Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
mullr committed Aug 12, 2024
1 parent 154014a commit 44e1796
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vscode/src/workspaceState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class WorkspaceAndSegmentState {
public activeWorkspaceVersionId: string,
public usedSegmentConfig: cliConfig.ContextSegment,
public activeSegments: ActiveSegments,
public mutatorGroupingAttrs: string[],
public mutatorGroupingAttrs: string[]
) {}

static async create(apiClient: api.Client): Promise<WorkspaceAndSegmentState> {
Expand Down Expand Up @@ -108,8 +108,8 @@ export class WorkspaceAndSegmentState {
};
}

let ws_def = await apiClient.workspace(activeWorkspaceVersionId).definition();
let mutatorGroupingAttrs = ws_def.mutator_grouping_attrs;
const ws_def = await apiClient.workspace(activeWorkspaceVersionId).definition();
const mutatorGroupingAttrs = ws_def.mutator_grouping_attrs;

return new WorkspaceAndSegmentState(
apiClient,
Expand Down

0 comments on commit 44e1796

Please sign in to comment.