From 54a719c6e6c1d48f3b3e564e5279ae144cb22bde Mon Sep 17 00:00:00 2001 From: Sylvain Leclerc Date: Fri, 3 Jan 2025 11:12:22 +0100 Subject: [PATCH] fix(ui): fix untranslated message (#2275) --- .../src/components/App/Singlestudy/Commands/Edition/index.tsx | 2 +- webapp/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx index 2ef264dc63..f26d44693a 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx @@ -522,7 +522,7 @@ function EditionView(props: Props) { ) : ( - + )} diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 71ef9f3906..c3b5b33f2b 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -17,7 +17,7 @@ import react from "@vitejs/plugin-react-swc"; import path from "path"; //! Keep '0.0.0.0', because 'localhost' may not working on Mac -const SERVER_URL = "http://0.0.0.0:8080"; +const SERVER_URL = "http://0.0.0.0:8080"; // https://vitejs.dev/config/ export default defineConfig(({ mode }) => {