diff --git a/apps/api/src/app/static/static.module.ts b/apps/api/src/app/static/static.module.ts index dde9146d..33e73920 100644 --- a/apps/api/src/app/static/static.module.ts +++ b/apps/api/src/app/static/static.module.ts @@ -7,6 +7,9 @@ import { ServeStaticModule } from '@nestjs/serve-static'; imports: [ ServeStaticModule.forRoot({ rootPath: join(__dirname, '..', 'web'), + serveStaticOptions: { + extensions: ['.json'], + }, }), ], }) diff --git a/apps/web/src/components/providers/SentryInitializer.tsx b/apps/web/src/components/providers/SentryInitializer.tsx index 0dc1c60e..466a50bb 100644 --- a/apps/web/src/components/providers/SentryInitializer.tsx +++ b/apps/web/src/components/providers/SentryInitializer.tsx @@ -57,7 +57,7 @@ function useSentryLogging() { console.log( `Sentry: ${ sentryClient.getOptions().enabled ? 'Enabling' : 'Disabling' - } reporting` + } reporting`, ); } }, []); diff --git a/apps/web/src/components/settings/UserDataSettingsGroup.tsx b/apps/web/src/components/settings/UserDataSettingsGroup.tsx index 7439afb2..a0b0afa1 100644 --- a/apps/web/src/components/settings/UserDataSettingsGroup.tsx +++ b/apps/web/src/components/settings/UserDataSettingsGroup.tsx @@ -16,6 +16,7 @@ import { getStorageQuota, requestPersistentStorage, } from '../../utils/storagePermissionUtils'; +import { Link } from 'react-router-dom'; export type ImportFields = { backup?: FileList; @@ -172,7 +173,7 @@ export function UserDataSettingsGroup() { />

Export

- hidden download button - +