remove optionality

This commit is contained in:
PhilReact 2025-03-17 20:43:34 +02:00
parent 7b4e187fdc
commit 4297756240
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "qapp-core",
"version": "1.0.6",
"version": "1.0.7",
"description": "Qortal's core React library with global state, UI components, and utilities",
"main": "dist/index.js",
"module": "dist/index.mjs",

View File

@ -13,7 +13,7 @@ resources: ReturnType<typeof useResources>;
// ✅ Define Config Type for Hook Options
interface GlobalProviderProps {
children: React.ReactNode;
config?: {
config: {
/** Authentication settings. */
auth?: UseAuthProps;
appName: string;