Skip to content

Commit

Permalink
Fix: current and currentlyRecoveringFrom need to be nullable and …
Browse files Browse the repository at this point in the history
…omittable.
  • Loading branch information
SyntaxColoring committed May 21, 2024
1 parent f4704d5 commit e568f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api-client/src/runs/commands/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export interface CommandDetail {
}

export interface CommandsLinks {
current: CommandsLink
currentlyRecoveringFrom: CommandsLink
current?: CommandsLink | null
currentlyRecoveringFrom?: CommandsLink | null
}

interface CommandsLink {
Expand Down

0 comments on commit e568f68

Please sign in to comment.