Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
Use actual value for "isNativeApp" on webshop page
Browse files Browse the repository at this point in the history
  • Loading branch information
Macludde committed Aug 31, 2023
1 parent f6382c4 commit 27f7eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/pages/webshop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function WebshopPage() {
useSetPageName('Webshop');
const { hasAccess } = useApiAccess();
const { user, refetch } = useUser();
const isNativeApp = true;
const isNativeApp = useIsNativeApp();
const [selectedCategory, setSelectedCategory] = useState<ProductCategory>(null);
return (
<Stack gap={{ xs: 1, sm: 2 }}>
Expand Down

0 comments on commit 27f7eab

Please sign in to comment.