From 5fd73d1b1360d4da9f5ed17f169adcfd5c031da9 Mon Sep 17 00:00:00 2001 From: Sebastian Tilsch Date: Mon, 16 Sep 2024 08:47:25 +0200 Subject: [PATCH] fix build issues --- apps/exhibition-live/components/config/exhibitionAppConfig.ts | 2 -- apps/exhibition-live/vite/App.tsx | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/exhibition-live/components/config/exhibitionAppConfig.ts b/apps/exhibition-live/components/config/exhibitionAppConfig.ts index 938531f6..bd16c3e4 100644 --- a/apps/exhibition-live/components/config/exhibitionAppConfig.ts +++ b/apps/exhibition-live/components/config/exhibitionAppConfig.ts @@ -8,8 +8,6 @@ import { import { BASE_IRI } from "./paths"; import { availableAuthorityMappings, - declarativeMappings, - lobidTypemap, makeStubSchema, schema, } from "@slub/exhibition-schema"; diff --git a/apps/exhibition-live/vite/App.tsx b/apps/exhibition-live/vite/App.tsx index 3caf2015..b7fd0d74 100644 --- a/apps/exhibition-live/vite/App.tsx +++ b/apps/exhibition-live/vite/App.tsx @@ -21,6 +21,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { ThemeComponent } from "@slub/edb-default-theme"; import "react-json-view-lite/dist/index.css"; +import { availableAuthorityMappings } from "@slub/exhibition-schema"; export const queryClient = new QueryClient(); @@ -53,6 +54,7 @@ export const App = ({ children }: { children?: React.ReactNode }) => { SimilarityFinder: SimilarityFinder, }} useRouterHook={useRouterHook} + normDataMapping={availableAuthorityMappings} > {children}