From 4297756240f53213ff5210e6e45d827b834ec252 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Mon, 17 Mar 2025 20:43:34 +0200 Subject: [PATCH] remove optionality --- package.json | 2 +- src/context/GlobalProvider.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 79b4c1d..adf0c68 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/context/GlobalProvider.tsx b/src/context/GlobalProvider.tsx index 861e87d..0ad0d9e 100644 --- a/src/context/GlobalProvider.tsx +++ b/src/context/GlobalProvider.tsx @@ -13,7 +13,7 @@ resources: ReturnType; // ✅ Define Config Type for Hook Options interface GlobalProviderProps { children: React.ReactNode; - config?: { + config: { /** Authentication settings. */ auth?: UseAuthProps; appName: string;