Skip to content

Commit

Permalink
fix: Fix wrong tooltips in TargetEditLayer
Browse files Browse the repository at this point in the history
  • Loading branch information
ronparkdev committed Nov 6, 2024
1 parent cc01f52 commit f537c75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/TargetEditLayer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,7 @@ export const TargetEditLayer: FC<Props> = ({ onChangeHighlight, onClose, targetE
label={
<>
Key{' '}
<Tooltip
placement="bottomLeft"
title={'Adjust the slider to select the specific range of the item you want to set a shortcut for'}>
<Tooltip placement="bottomLeft" title={'Press the keys you want to set as a shortcut for this item'}>
<QuestionCircleOutlined />
</Tooltip>
</>
Expand All @@ -209,7 +207,9 @@ export const TargetEditLayer: FC<Props> = ({ onChangeHighlight, onClose, targetE
label={
<>
Element{' '}
<Tooltip placement="bottomLeft" title={'Press the keys you want to set as a shortcut for this item'}>
<Tooltip
placement="bottomLeft"
title={'Adjust the slider to select the specific range of the item you want to set a shortcut for'}>
<QuestionCircleOutlined />
</Tooltip>
</>
Expand Down

0 comments on commit f537c75

Please sign in to comment.