This commit is contained in:
Wuesteon 2025-12-04 00:32:13 +01:00
parent 16cb8e753b
commit e9caa4a217
46 changed files with 1784 additions and 728 deletions

View file

@ -111,11 +111,7 @@ export function createUserSettingsStore(config: UserSettingsStoreConfig): UserSe
/**
* Make an API request to the settings endpoint
*/
async function apiRequest<T>(
method: string,
path: string,
body?: object
): Promise<T | null> {
async function apiRequest<T>(method: string, path: string, body?: object): Promise<T | null> {
const token = await getAccessToken();
if (!token) {
console.warn('No access token available for settings API');