Skip to content

Commit

Permalink
fix(ui): fix untranslated message (#2275)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvlecl authored Jan 3, 2025
1 parent c68cd50 commit 54a719c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ function EditionView(props: Props) {
) : (
<Body sx={{ alignItems: "left" }}>
<Box height="85%">
<EmptyView title="variants.error.noCommands" />
<EmptyView title={t("variants.error.noCommands")} />
</Box>
</Body>
)}
Expand Down
2 changes: 1 addition & 1 deletion webapp/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 54a719c

Please sign in to comment.