1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Make dependencies readonly

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-05-25 10:26:22 +03:00
parent 814ae1ceed
commit 0c7c851c66
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -30,7 +30,7 @@ interface Dependencies {
export class UserStore extends BaseStore<UserStoreModel> /* implements UserStoreFlatModel (when strict null is enabled) */ {
readonly displayName = "UserStore";
constructor(private dependencies: Dependencies) {
constructor(private readonly dependencies: Dependencies) {
super({
configName: "lens-user-store",
migrations,