Fixing allowed and blocked

This commit is contained in:
Dessalines 2021-04-07 11:22:24 -04:00
parent 4e32a1f53b
commit cda85ca712

View file

@ -117,6 +117,6 @@ export interface SaveSiteConfig {
export interface FederatedInstances { export interface FederatedInstances {
linked: string[]; linked: string[];
allowed: string[]; allowed?: string[];
blocked: string[]; blocked?: string[];
} }