79375752

Date: 2025-01-21 19:48:30
Score: 1
Natty:
Report link

only change the query to params

router.push({
  pathname: '/client/scan/InviteClientsScreen',
  params: { bar_id, table_id, user_id }
});

and you can access the parameters here

    const { bar_id, table_id, user_id } = useLocalSearchParams();
    console.log({ bar_id, table_id, user_id });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eslam Mohamed