From 70f88ac93054641f443cc24248df31e241b7d49f Mon Sep 17 00:00:00 2001 From: Mikkel Jakobsen Date: Mon, 15 Jan 2024 13:33:12 +0100 Subject: [PATCH] Use next-present for all FBI requests except search related ones To reflect how it will be done in production --- src/core/storybook/serviceUrlArgs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/storybook/serviceUrlArgs.ts b/src/core/storybook/serviceUrlArgs.ts index a481c8ebfc..9ca45f8f2e 100644 --- a/src/core/storybook/serviceUrlArgs.ts +++ b/src/core/storybook/serviceUrlArgs.ts @@ -29,7 +29,7 @@ export default { }, [serviceUrlKeys.fbi]: { name: "Base url for the FBI API", - defaultValue: "https://fbi-api.dbc.dk/next/graphql", + defaultValue: "https://fbi-api.dbc.dk/next-present/graphql", control: { type: "text" } }, [serviceUrlKeys.fbiSearch]: { @@ -39,7 +39,7 @@ export default { }, [serviceUrlKeys.fbiMaterial]: { name: "Base url for the FBI API (material)", - defaultValue: "https://fbi-api.dbc.dk/next/graphql", + defaultValue: "https://fbi-api.dbc.dk/next-present/graphql", control: { type: "text" } } };