Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Nov 7, 2024
1 parent e289659 commit 7e3d02a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shared/studio/components/extendedViewers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const extendedViewerRenderers: {
[key: string]: Renderer;
} = {
"std::str": TextViewer as Renderer,
"std::bytes": HexViewer,
"std::bytes": HexViewer as Renderer,
"std::json": JsonViewer as Renderer,
};

Expand Down
2 changes: 1 addition & 1 deletion shared/studio/components/headerNav/elements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export interface HeaderNavColProps<LinkProps> {
onMouseEnter?: () => void;
}> &
LinkProps
) => JSX.Element | null;
) => React.ReactNode;
showCursor?: boolean;
closeDropdown: () => void;
itemGroups: ({
Expand Down

0 comments on commit 7e3d02a

Please sign in to comment.