Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/branding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ export const APP_STAGE_LABEL =
injectedDesktopAppBranding?.stageLabel ?? (import.meta.env.DEV ? "Dev" : "Alpha");
export const APP_DISPLAY_NAME =
injectedDesktopAppBranding?.displayName ?? `${APP_BASE_NAME} (${APP_STAGE_LABEL})`;
export const APP_VERSION = "0.0.20"; // import.meta.env.APP_VERSION || "0.0.0";
export const APP_VERSION = import.meta.env.APP_VERSION || "0.0.0";
2 changes: 1 addition & 1 deletion apps/web/src/components/settings/ConnectionsSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@ export function ConnectionsSettings() {
<Input
value={savedBackendSshUsername}
onChange={(event) => setSavedBackendSshUsername(event.target.value)}
placeholder="julius"
placeholder="root"
disabled={isAddingSavedBackend}
spellCheck={false}
/>
Expand Down
Loading