Skip to content

Commit 35cd609

Browse files
committed
add: 'h-screen' to sidebar on music, change: route on playground
1 parent faaf5c9 commit 35cd609

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/examples/music/components/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface SidebarProps extends React.HTMLAttributes<HTMLDivElement> {
2222

2323
export function Sidebar({ className, playlists }: SidebarProps) {
2424
return (
25-
<div className={cn("pb-12", className)}>
25+
<div className={cn("pb-12 h-screen", className)}>
2626
<div className="space-y-4 py-4">
2727
<div className="px-4 py-2">
2828
<h2 className="mb-2 px-2 text-lg font-semibold tracking-tight">

src/app/examples/playground/components/preset-selector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function PresetSelector({ presets, ...props }: PresetSelectorProps) {
7171
))}
7272
</CommandGroup>
7373
<CommandGroup className="pt-0">
74-
<CommandItem onSelect={() => router.push("/examples")}>
74+
<CommandItem onSelect={() => router.push("/")}>
7575
More examples
7676
</CommandItem>
7777
</CommandGroup>

0 commit comments

Comments
 (0)