xcarpentier/rn-tourguide

Different tours on the same screen and same component does not work

taniibarra opened this issue · 1 comments

I need to show two different tours on the same screen, same component and same user, but at different times. When I import the controller and pass a different key to the other controller, it does not open any tour. How do I solve this?
Example:

const { canStart, start, eventEmitter } =
useTourGuideController('collaborators');

const { canStart, start, eventEmitter, tourKey, getCurrentStep } =
useTourGuideController('onboarding');

@xcarpentier