Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Fix excess symbol
Browse files Browse the repository at this point in the history
Co-authored-by: Sergey <[email protected]>
  • Loading branch information
hlomzik and Gondragos authored Jan 25, 2024
1 parent 425b029 commit c0a23d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SidePanels/OutlinerPanel/OutlinerTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ const RootTitle: FC<any> = observer(({
{item?.text && <Elem name="text">{item.text.replace(/\\n/g, '\n')}</Elem>}
{item?.isDrawing && (
<Elem tag="span" name="incomplete">
<Tooltip title={`Incomplete ${item.type?.replace('region', '') ?? 'region'}$`}>
<Tooltip title={`Incomplete ${item.type?.replace('region', '') ?? 'region'}`}>
<IconWarning />
</Tooltip>
</Elem>
Expand Down

0 comments on commit c0a23d2

Please sign in to comment.