You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DestinationItemPage, DestinationOverviewPage, and DestinationSettingsPage all make the same call to useGetDestination.
We can take the destination loaded on the DestinationItemPage and provide it through the outlet to the settings and overview pages.
DestinationItemPage, DestinationOverviewPage, and DestinationSettingsPage all make the same call to
useGetDestination
.We can take the destination loaded on the DestinationItemPage and provide it through the outlet to the settings and overview pages.
Outlet Context
<Outlet context={{ destination }} />
const { destination } = useOutletContext<{ destination: DestinationRead }>();
The text was updated successfully, but these errors were encountered: