Skip to content

Commit

Permalink
fix: file path title in certs dialog (#8247)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-willis authored Dec 13, 2024
1 parent 1910b34 commit 5f4f39d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/insomnia/src/ui/components/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ import React from 'react';
library.add(fas, far, fab);

export const Icon = (props: FontAwesomeIconProps) => (
<FontAwesomeIcon {...props} aria-hidden pointerEvents="none" />
<FontAwesomeIcon {...props} />
);
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export const GitStagingModal: FC<{ onClose: () => void }> = ({
unstageChanges(changes.staged.map(entry => entry.path));
}}
>
<Icon icon="minus" />
<Icon icon="minus" aria-hidden pointerEvents="none" />
</Button>
<Tooltip
offset={8}
Expand Down Expand Up @@ -305,7 +305,7 @@ export const GitStagingModal: FC<{ onClose: () => void }> = ({
unstageChanges([item.entry.path]);
}}
>
<Icon icon="minus" />
<Icon icon="minus" aria-hidden pointerEvents="none" />
</Button>
<Tooltip
offset={8}
Expand Down Expand Up @@ -370,7 +370,7 @@ export const GitStagingModal: FC<{ onClose: () => void }> = ({
stageChanges(changes.unstaged.map(entry => entry.path));
}}
>
<Icon icon="plus" />
<Icon icon="plus" aria-hidden pointerEvents="none" />
</Button>
<Tooltip
offset={8}
Expand Down Expand Up @@ -438,7 +438,7 @@ export const GitStagingModal: FC<{ onClose: () => void }> = ({
stageChanges([item.entry.path]);
}}
>
<Icon icon="plus" />
<Icon icon="plus" aria-hidden pointerEvents="none" />
</Button>
<Tooltip
offset={8}
Expand Down

0 comments on commit 5f4f39d

Please sign in to comment.