Skip to content

Commit

Permalink
add Readonly utility type to `IMAGE_REGION_STATUS_TO_STATUS_ICON_ST…
Browse files Browse the repository at this point in the history
…ATUS`
  • Loading branch information
bnussman committed Jun 28, 2024
1 parent 79a10d3 commit 9d8c0d6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ export const ImageRegionRow = (props: Props) => {
);
};

const IMAGE_REGION_STATUS_TO_STATUS_ICON_STATUS: Record<
ExtendedImageRegionStatus,
Status
const IMAGE_REGION_STATUS_TO_STATUS_ICON_STATUS: Readonly<
Record<ExtendedImageRegionStatus, Status>
> = {
available: 'active',
creating: 'other',
Expand Down

0 comments on commit 9d8c0d6

Please sign in to comment.