Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion packages/ui/src/features/canvas/hooks/useChannelsLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export function useChannelsLayout(): boolean {
PROJECT_BLUEBIRD_FLAG,
import.meta.env.DEV,
);
const layoutEnabled = useFeatureFlag(CHANNELS_LAYOUT_FLAG, false);
const layoutEnabled = useFeatureFlag(
CHANNELS_LAYOUT_FLAG,
import.meta.env.DEV,
Comment thread
tatoalo marked this conversation as resolved.
);
return layoutEnabled && bluebirdEnabled;
}
4 changes: 2 additions & 2 deletions packages/ui/src/features/command/CommandSearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ export function CommandSearchBar({ onClick }: { onClick: () => void }) {
return (
// The row is a window-drag region; the field has to opt out of it or the
// press that should open the menu drags the window instead.
<div className="no-drag mt-px min-w-0 flex-1 px-3">
<div className="mt-px min-w-0 flex-1 px-3">
<button
type="button"
aria-label="Search"
onClick={onClick}
className="mx-auto flex h-7 w-full max-w-120 items-center gap-2 rounded-sm bg-fill-hover pr-1 pl-2 hover:bg-fill-selected dark:hover:bg-input/80"
className="no-drag mx-auto flex h-7 w-full max-w-120 items-center gap-2 rounded-sm bg-fill-hover pr-1 pl-2 hover:bg-fill-selected dark:hover:bg-input/80"
>
<MagnifyingGlass size={14} className="shrink-0" />
<span className="min-w-0 flex-1 truncate text-left text-[13px]">
Expand Down
Loading