diff --git a/ts/rmo/content/Nuisance.vue b/ts/rmo/content/Nuisance.vue
index 74ca6da6..84b3319b 100644
--- a/ts/rmo/content/Nuisance.vue
+++ b/ts/rmo/content/Nuisance.vue
@@ -537,7 +537,7 @@ async function doSubmit() {
});
const data: PublicReport = (await resp.json()) as PublicReport;
storePublicReport.add(data);
- router.push("/submitted/" + data.id);
+ router.push("/submitted/" + data.public_id);
} catch (error) {
errorMessage.value =
error instanceof Error ? error.message : "Upload failed";
diff --git a/ts/rmo/content/Water.vue b/ts/rmo/content/Water.vue
index 9e60d1eb..eea853bc 100644
--- a/ts/rmo/content/Water.vue
+++ b/ts/rmo/content/Water.vue
@@ -697,7 +697,7 @@ async function doSubmit() {
});
const data: PublicReport = (await resp.json()) as PublicReport;
storePublicReport.add(data);
- router.push("/submitted/" + data.id);
+ router.push("/submitted/" + data.public_id);
} catch (error) {
errorMessage.value =
error instanceof Error ? error.message : "Upload failed";
diff --git a/ts/rmo/content/compliance/Complete.vue b/ts/rmo/content/compliance/Complete.vue
index d15be528..2e5d45a8 100644
--- a/ts/rmo/content/compliance/Complete.vue
+++ b/ts/rmo/content/compliance/Complete.vue
@@ -121,13 +121,6 @@
margin-top: 16px;
}
-.reference-number {
- text-align: center;
- color: #6c757d;
- font-size: 0.9rem;
- margin-top: 24px;
-}
-
.action-buttons {
width: 100%;
}
@@ -233,13 +226,6 @@
-
-
-
-
- Reference number: {{ modelValue.public_id }}
-
-