From 70c65cefb708d805a63cb47680867759fc970f58 Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 28 Aug 2024 18:20:33 +0900 Subject: [PATCH] Default plotlypyIsAvailableState set to false to avoid crash --- optuna_dashboard/ts/state.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/optuna_dashboard/ts/state.ts b/optuna_dashboard/ts/state.ts index 644bd984f..02e86bc1b 100644 --- a/optuna_dashboard/ts/state.ts +++ b/optuna_dashboard/ts/state.ts @@ -53,7 +53,7 @@ export const artifactIsAvailable = atom({ export const plotlypyIsAvailableState = atom({ key: "plotlypyIsAvailable", - default: true, + default: false, }) export const studySummariesLoadingState = atom({ @@ -138,9 +138,6 @@ export const useBackendRender = (): boolean => { if (plotlypyIsAvailable) { return true } - console.warn( - "Use frontend rendering because plotlypy is specified but not available." - ) } return false }