We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f216d8 commit 77dcd3dCopy full SHA for 77dcd3d
client/packages/lowcoder/src/api/subscriptionApi.ts
@@ -216,6 +216,12 @@ export const searchCustomersSubscriptions = async (Customer: LowcoderSearchCusto
216
else if (result.data.success == "false" && result.data.reason == "customerNotFound") {
217
return [];
218
}
219
+ else if (result.data.success == "false" && result.data.reason == "userSubscriptionNotFound") {
220
+ return [];
221
+ }
222
+ else if (result.data.success == "false" && result.data.reason == "orgSubscriptionNotFound") {
223
224
225
} catch (error) {
226
console.error("Error searching customer:", error);
227
throw error;
0 commit comments