Skip to content

Commit

Permalink
fix(36381): prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-croff committed Mar 11, 2024
1 parent f392a07 commit b1b642c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/BaseMiniContextMenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ type BaseMiniContextMenuItemProps = {
* Component that renders a mini context menu item with a
* pressable. Also renders a tooltip when hovering the item.
*/
function BaseMiniContextMenuItem({tooltipText, onPress, children, isDelayButtonStateComplete = true, shouldPreventDefaultFocusOnPress = true}: BaseMiniContextMenuItemProps, ref: ForwardedRef<View>) {
function BaseMiniContextMenuItem(
{tooltipText, onPress, children, isDelayButtonStateComplete = true, shouldPreventDefaultFocusOnPress = true}: BaseMiniContextMenuItemProps,
ref: ForwardedRef<View>,
) {
const styles = useThemeStyles();
const StyleUtils = useStyleUtils();
return (
Expand Down

0 comments on commit b1b642c

Please sign in to comment.