Allow to remove user location setting

Closes #671

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-04-16 17:18:41 +02:00
parent 30c81ee3a8
commit 1fff71ee0e
4 changed files with 41 additions and 6 deletions

View File

@@ -13,9 +13,9 @@ export interface ICurrentUser {
}
export interface IUserPreferredLocation {
range?: number;
name?: string;
geohash?: string;
range?: number | null;
name?: string | null;
geohash?: string | null;
}
export interface IUserSettings {