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 6198d29 commit 4cdd1c9Copy full SHA for 4cdd1c9
src/ui/pages/stripe/ViewLinks.page.tsx
@@ -14,6 +14,7 @@ export const ManageStripeLinksPage: React.FC = () => {
14
const createLink = async (payload: PostInvoiceLinkRequest): Promise<PostInvoiceLinkResponse> => {
15
const modifiedPayload = { ...payload, invoiceAmountUsd: payload.invoiceAmountUsd * 100 };
16
try {
17
+ setIsLoading(true);
18
const response = await api.post('/api/v1/stripe/paymentLinks', modifiedPayload);
19
setIsLoading(false);
20
return response.data;
0 commit comments