Update nuisance submission to go to submitted page

This commit is contained in:
Eli Ribble 2026-04-08 17:49:32 +00:00
parent c41154a200
commit 2c0bfb9904
No known key found for this signature in database
31 changed files with 747 additions and 228 deletions

View file

@ -13,7 +13,9 @@ export interface District {
name: string;
phone_office: string;
slug: string;
uri: string;
url_logo: string;
url_website: string;
}
export interface Location {
latitude: number;
@ -30,3 +32,8 @@ export interface Geocode {
cell: number;
location: Location;
}
export interface Publicreport {
district: string;
id: string;
uri: string;
}