Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Removed 'other' option from example in viewport.mdx
While updating the configuration of viewports in project we decided to assign icons to our custom viewports in Storybook. That's when we spotted that assigning 'other' doesn't show the icon.
I've checked the names of the available icons in `Devices` object in `iconList` array, and 'others' doesn't seem to be there.
  • Loading branch information
Nerdy-Girl authored Oct 15, 2025
commit fd8fd00a261d9025d98dd70ea626f1b881586589
2 changes: 1 addition & 1 deletion docs/essentials/viewport.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Type:
[key: string]: {
name: string;
styles: { height: string, width: string };
type: 'desktop' | 'mobile' | 'tablet' | 'other';
type: 'desktop' | 'mobile' | 'tablet';
};
}
```
Expand Down