diff --git a/frontend/components/sections/RepositoriesSection.tsx b/frontend/components/sections/RepositoriesSection.tsx
index 8479e06..c847fdf 100644
--- a/frontend/components/sections/RepositoriesSection.tsx
+++ b/frontend/components/sections/RepositoriesSection.tsx
@@ -22,6 +22,7 @@ const empty: NewProjectBody = {
root_dir: "",
git_remote: "",
credential_ref: "",
+ init_mise: false,
};
export function RepositoriesSection() {
@@ -163,6 +164,28 @@ export function RepositoriesSection() {
>
)}
+ {!editing && (
+
+ )}
+ {!editing && form.init_mise && form.mode === "manual" && !form.git_remote.trim() && (
+
+ A git remote is required to push the new .mise.toml —
+ add one above, or mise won’t be initialized.
+
+ )}
+