Hello, I want to know what advise can you give me to handle this situation when using useQuery. Example code ```ts const customers = useQuery(api.sales_channels.getCustomers, { organizationId: currentOrganization?._id, }) || [] ``` TS Error in (organizationId): ```ts Type 'Id<"organizations"> | undefined' is not assignable to type 'Id<"organizations">'. Type 'undefined' is not assignable to type 'Id<"organizations">'.ts(2322) (property) organizationId: Id<"organizations"> ```