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 dcd476e commit 0071770Copy full SHA for 0071770
src/api/oauth.js
@@ -107,7 +107,9 @@ export const registClient = async ({
107
managerPhone,
108
}) => {
109
try {
110
- const businessLogoUrl = await uploadFiles(businessLogo, 'logo/');
+ let fileURLs = [];
111
+ fileURLs = await uploadFiles(businessLogo, 'logo/');
112
+ const businessLogoUrl = fileURLs[0];
113
return await PostAxiosInstance('/api/epic/business', {
114
nickName,
115
businessName,
0 commit comments