From 1321dc3d02a2482dcea55df2b31365266c55cd03 Mon Sep 17 00:00:00 2001 From: Alex Ramsdell Date: Mon, 30 Oct 2023 10:21:18 -0400 Subject: [PATCH] akamai gets light editor theme. --- src/components/shared/webide/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/webide/Editor.js b/src/components/shared/webide/Editor.js index 67a08411c..0726ed944 100644 --- a/src/components/shared/webide/Editor.js +++ b/src/components/shared/webide/Editor.js @@ -31,7 +31,7 @@ function Editor({ active, file, onChange, theme }) { }, [file]); useEffect(() => { - setEditorTheme(theme === 'light' ? 'light' : 'vs-dark'); + setEditorTheme(theme === 'light' || theme === 'akamai' ? 'light' : 'vs-dark'); }, [theme]);