Skip to content

Commit

Permalink
Allow frequency and error to be null
Browse files Browse the repository at this point in the history
See also: #10
  • Loading branch information
BECATRUE committed Dec 4, 2024
1 parent caf1c7d commit 7957a83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wlm-ui/src/store/slices/channel/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export interface SettingType {
};

export interface MeasurementType {
frequency?: number;
error?: string;
frequency: number | null;
error: string | null;
measuredAt: string;
};

Expand Down

0 comments on commit 7957a83

Please sign in to comment.