Skip to content

Commit

Permalink
Fix ISwarmState type
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbaldwin44 committed Nov 16, 2023
1 parent c562f3f commit 4b0dcb2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions locust/webui/src/redux/slice/swarm.slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import { ITableStructure } from 'types/table.types';
import { camelCaseKeys } from 'utils/string';

export interface ISwarmState {
auth: {
email: string;
name: string;
};
availableShapeClasses: string[];
availableUserClasses: string[];
extraOptions: IExtraOptions;
Expand All @@ -26,7 +22,7 @@ export interface ISwarmState {
overrideHostWarning: boolean;
percentile1: number;
percentile2: number;
runTime: number;
runTime?: number;
showUserclassPicker: boolean;
spawnRate: number | null;
state: string;
Expand Down

0 comments on commit 4b0dcb2

Please sign in to comment.