Skip to content

Commit

Permalink
fix: remove duplicate description tooltip in cast tool
Browse files Browse the repository at this point in the history
  • Loading branch information
daoleno committed Sep 25, 2024
1 parent b473aeb commit 71dbd0d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.1] - 2024-09-26

### Fixed

- Remove duplicate description tooltip in cast tool

## [0.4.0] - 2024-09-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "raar",
"private": true,
"version": "0.4.0",
"version": "0.4.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raar"
version = "0.4.0"
version = "0.4.1"
description = "RaaR"
authors = ["daoleno"]
edition = "2021"
Expand Down
8 changes: 0 additions & 8 deletions src/components/CastTool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -582,14 +582,6 @@ const CastTool: React.FC = () => {
variant="ghost"
>
{cmd}
<Tooltip>
<TooltipTrigger>
<HelpCircle className="h-3 w-3 text-muted-foreground ml-1" />
</TooltipTrigger>
<TooltipContent>
<p>{commandConfig.description}</p>
</TooltipContent>
</Tooltip>
</Button>
)
})}
Expand Down

0 comments on commit 71dbd0d

Please sign in to comment.