change(ui): removed unused var

This commit is contained in:
Shekar Siri 2023-10-31 16:52:52 +01:00
parent ae46d1ecbe
commit aaf5bda488
2 changed files with 0 additions and 7 deletions

View file

@ -38,7 +38,6 @@ interface RouterProps extends RouteComponentProps, ConnectedProps<typeof connect
};
mstore: any;
setJwt: (jwt: string) => any;
additionalRoutes?: React.ReactElement | null;
fetchMetadata: (siteId: string) => void;
initSite: (site: any) => void;
}

View file

@ -32,12 +32,6 @@ const siteIdRequiredPaths: string[] = [
'/check-recording-status'
];
const noStoringFetchPathStarts: string[] = [
'/account/password',
'/password',
'/login'
];
export const clean = (obj: any, forbiddenValues: any[] = [undefined, '']): any => {
const keys = Array.isArray(obj)
? new Array(obj.length).fill().map((_, i) => i)