Skip to content

Commit

Permalink
chore(refine): add missing projectId property of options
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemir committed Nov 9, 2023
1 parent d910cc7 commit acb3a71
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions refine-nextjs/plugins/auth-provider-auth0/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
{props.children}
Expand Down
3 changes: 3 additions & 0 deletions refine-nextjs/plugins/auth-provider-google/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
{props.children}
Expand Down
3 changes: 3 additions & 0 deletions refine-nextjs/plugins/auth-provider-keycloak/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
{props.children}
Expand Down
3 changes: 3 additions & 0 deletions refine-remix/plugins/chakra/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ export default function App() {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
<Outlet />
Expand Down
3 changes: 3 additions & 0 deletions refine-remix/plugins/mantine/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ export default function App() {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
<Outlet />
Expand Down
3 changes: 3 additions & 0 deletions refine-remix/plugins/mui/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ export default function App() {
syncWithLocation: true,
warnWhenUnsavedChanges: true,
useNewQueryKeys: true,
<%_ if (typeof projectId !== 'undefined' && projectId !== '') { _%>
projectId: "<%= projectId %>",
<%_ } _%>
}}
>
<Outlet />
Expand Down

0 comments on commit acb3a71

Please sign in to comment.