Skip to content

Commit

Permalink
fix: hide bushinode keychain
Browse files Browse the repository at this point in the history
  • Loading branch information
jjheywood committed Jul 9, 2024
1 parent 4c02eca commit bd1d461
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions spaceward/src/features/keys/NewKeyButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,22 @@ export function NewKeyButton() {
{q.data?.pages.flatMap(
(page) =>
page.keychains?.map(
(kr) => (
<SelectItem
key={
kr.id
}
value={
kr.id!
}
>
{
kr.description
}
</SelectItem>
),
(kr) =>
kr.id !==
"3" && (
<SelectItem
key={
kr.id
}
value={
kr.id!
}
>
{
kr.description
}
</SelectItem>
),
),
)}
</SelectContent>
Expand Down

0 comments on commit bd1d461

Please sign in to comment.