Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/app/bundle-budget.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"`node scripts/why-eager.mjs --from=views/SplitWorkspaceRoute.tsx <package>`",
"to print the static chain that pulled a package into the closure."
],
"maxBootBytes": 1723617,
"maxBootBytes": 1725665,
"maxBootBrotliBytes": 429072,
"forbiddenBootPackages": [
"@pierre/diffs",
Expand Down
4 changes: 2 additions & 2 deletions apps/app/src/components/commands/AppCommandShortcutHint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface AppCommandShortcutPillProps {
className?: string;
}

const APP_COMMAND_SHORTCUT_HINT_CLASS =
export const APP_COMMAND_ACCESSORY_PILL_CLASS =
"pointer-events-none inline-flex shrink-0 items-center justify-center whitespace-nowrap rounded-sm bg-state-hover px-1.5 py-1 font-sans text-xs font-normal leading-none tabular-nums text-subtle-foreground opacity-60";

export function AppCommandShortcutPill({
Expand All @@ -24,7 +24,7 @@ export function AppCommandShortcutPill({
return (
<kbd
aria-hidden={ariaHidden}
className={cn(APP_COMMAND_SHORTCUT_HINT_CLASS, className)}
className={cn(APP_COMMAND_ACCESSORY_PILL_CLASS, className)}
>
{shortcut.label}
</kbd>
Expand Down
Loading
Loading