Skip to content

Commit

Permalink
Fix type errors (#1867)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Nov 10, 2023
1 parent 6513055 commit e0e5bc8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/state/models/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import {RootStoreModel} from './root-store'
export type ServiceDescription = DescribeServer.OutputSchema

export class SessionModel {
data: any = {}

constructor(public rootStore: RootStoreModel) {
makeAutoObservable(this, {
rootStore: false,
Expand All @@ -23,6 +25,8 @@ export class SessionModel {
return false
}

clear() {}

/**
* Helper to fetch the accounts config settings from an account.
*/
Expand Down

0 comments on commit e0e5bc8

Please sign in to comment.