Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.

Commit 5942582

Browse files
committed
Handle permissions
1 parent f229fb0 commit 5942582

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/player/src-tauri/capabilities/default.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"permissions": [
99
"core:default",
1010
"dialog:allow-open",
11+
"dialog:allow-save",
12+
"fs:allow-write-text-file",
1113
"log:default",
1214
{
1315
"identifier": "fs:allow-exists",

packages/ui/src/components/Popover/PopoverItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const PopoverItem: FC<PopoverItemProps> = ({
3232
...props
3333
}) => (
3434
<button className={cn(popoverItemVariants({ intent, className }))} {...props}>
35-
<span className="shrink-0">{icon}</span>
35+
<span className="w-8 shrink-0">{icon}</span>
3636
<span>{children}</span>
3737
</button>
3838
);

0 commit comments

Comments
 (0)