Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.
Merged
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
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,13 +167,7 @@ export function ProjectSelectStep({ onNext, onBack }: ProjectSelectStepProps) {
<Popover.Trigger>
<button
type="button"
className="box-border flex w-full cursor-pointer items-center justify-between rounded-[10px] border border-(--gray-a3) bg-(--color-panel-solid) px-[14px] py-[10px] text-sm"
style={{
all: "unset",
boxShadow:
"0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02)",
fontFamily: "inherit",
}}
className="box-border flex w-full cursor-pointer appearance-none items-center justify-between rounded-[10px] border border-(--gray-a3) bg-(--color-panel-solid) px-[14px] py-[10px] font-[inherit] text-sm shadow-[0_1px_3px_rgba(0,0,0,0.04),0_1px_2px_rgba(0,0,0,0.02)]"
>
<Text className="font-medium text-(--gray-12) text-sm">
{currentOrg?.name ?? "Select organization..."}
Expand DownExpand Up@@ -262,13 +256,7 @@ export function ProjectSelectStep({ onNext, onBack }: ProjectSelectStepProps) {
<Popover.Trigger>
<button
type="button"
className="box-border flex w-full cursor-pointer items-center justify-between rounded-[10px] border border-(--gray-a3) bg-(--color-panel-solid) px-[14px] py-[10px] text-sm"
style={{
all: "unset",
boxShadow:
"0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02)",
fontFamily: "inherit",
}}
className="box-border flex w-full cursor-pointer appearance-none items-center justify-between rounded-[10px] border border-(--gray-a3) bg-(--color-panel-solid) px-[14px] py-[10px] font-[inherit] text-sm shadow-[0_1px_3px_rgba(0,0,0,0.04),0_1px_2px_rgba(0,0,0,0.02)]"
>
<Flex direction="column" gap="1">
<Text className="font-medium text-(--gray-12) text-sm">
Expand Down
Loading