Skip to content

Commit

Permalink
fix: remove null check.
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzNotABug committed Mar 10, 2025
1 parent 46d8226 commit ca00ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/commandCenter/searchers/organizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const orgSearcher = (async (query: string) => {
: await sdk.forConsole.billing.listOrganization();

return teams
.filter((organization) => organization.name.toLowerCase().includes(query?.toLowerCase()))
.filter((organization) => organization.name.toLowerCase().includes(query.toLowerCase()))
.map((organization) => {
return {
label: organization.name,
Expand Down

0 comments on commit ca00ec6

Please sign in to comment.