mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
Implemented strict mode for the project (broken tests, hundreds of @ts-ignore and new errors are included) [skip ci]
This commit is contained in:
committed by
SleepWalker
parent
10e8b77acf
commit
96049ad4ad
@@ -3,7 +3,7 @@ import { OauthAppResponse } from 'app/services/api/oauth';
|
||||
import { Action } from './actions';
|
||||
|
||||
export interface Apps {
|
||||
available: OauthAppResponse[];
|
||||
available: Array<OauthAppResponse>;
|
||||
}
|
||||
|
||||
const defaults: Apps = {
|
||||
@@ -42,8 +42,6 @@ export default function apps(state: Apps = defaults, action: Action): Apps {
|
||||
app => app.clientId !== action.payload,
|
||||
),
|
||||
};
|
||||
|
||||
default:
|
||||
}
|
||||
|
||||
return state;
|
||||
|
||||
Reference in New Issue
Block a user