Skip to content

Commit

Permalink
Merge pull request #337 from gitroomhq/feat/fix-variables
Browse files Browse the repository at this point in the history
fix storage provider
  • Loading branch information
nevo-david authored Oct 7, 2024
2 parents dec4763 + 2aaac86 commit 2a16bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async function AppLayout({ children }: { children: ReactNode }) {
</head>
<body className={clsx(chakra.className, 'text-primary dark')}>
<VariableContextComponent
storageProvider={process.env.NEXT_PUBLIC_STORAGE_PROVIDER! as 'local' | 'cloudflare'}
storageProvider={process.env.STORAGE_PROVIDER! as 'local' | 'cloudflare'}
backendUrl={process.env.NEXT_PUBLIC_BACKEND_URL!}
plontoKey={process.env.NEXT_PUBLIC_POLOTNO!}
billingEnabled={!!process.env.STRIPE_PUBLISHABLE_KEY}
Expand Down

0 comments on commit 2a16bce

Please sign in to comment.