Skip to content

Commit

Permalink
fix selection type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AlyssaWang committed Jun 28, 2023
1 parent 10a79b6 commit 493596b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/models/selectionModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SuiteOptionChoice } from './testSuiteModels';

export type Option = {
id: string;
title: string;
title?: string;
};

export type ListOption = Option;
Expand Down
2 changes: 1 addition & 1 deletion client/src/models/testSuiteModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface Result {

export interface SuiteOption extends Option {
id: string;
title: string;
title?: string;
description?: string;
list_options?: SuiteOptionChoice[];
value?: string;
Expand Down

0 comments on commit 493596b

Please sign in to comment.