1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 04:19:37 +02:00

Fixed bug with value parsing if custom icon was used

This commit is contained in:
Paweł Malak 2021-11-19 14:06:38 +01:00
parent c2e9f82cd6
commit d13b890e16
4 changed files with 4 additions and 4 deletions

View file

@ -61,7 +61,7 @@ export const AppForm = ({ app, modalHandler }: Props): JSX.Element => {
}
data.append('name', formData.name);
data.append('url', formData.url);
data.append('isPublic', `${formData.isPublic}`);
data.append('isPublic', `${formData.isPublic ? 1 : 0}`);
return data;
};