mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-13 01:05:37 +02:00
🐜 fix(zero): Fix zero throwing error about tables being undefined (#281)
## Description <!-- Briefly describe the purpose and scope of your changes --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new environment variable for improved configuration options. - **Chores** - Updated and locked dependency versions for enhanced stability. - Marked certain packages as private to prevent accidental publication. - Updated package metadata and trusted dependencies for better dependency management. - **Refactor** - Adjusted provider structure in the app to wrap children components with an additional context provider. - Simplified and cleaned up provider context code for maintainability. - Improved import statements for clarity and type safety. - **Style** - Reorganized import order for consistency. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
@@ -8,6 +8,7 @@ import '@fontsource/geist-sans/800.css';
|
||||
import '@fontsource/geist-sans/900.css';
|
||||
import { Text } from '@nestri/www/ui/text';
|
||||
import { styled } from "@macaron-css/solid";
|
||||
import { ZeroProvider } from './providers/zero';
|
||||
import { TeamRoute } from '@nestri/www/pages/team';
|
||||
import { OpenAuthProvider } from "@openauthjs/solid";
|
||||
import { NotFound } from '@nestri/www/pages/not-found';
|
||||
@@ -107,7 +108,9 @@ export const App: Component = () => {
|
||||
<Text weight='semibold' spacing='xs' size="3xl" font="heading" >Confirming your identity…</Text>
|
||||
</FullScreen>
|
||||
}>
|
||||
{props.children}
|
||||
<ZeroProvider>
|
||||
{props.children}
|
||||
</ZeroProvider>
|
||||
</AccountProvider>
|
||||
)}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user