Merge branch 'dev_environment' of gitlab.com:brandx/bxt-app into dev_environment

This commit is contained in:
Carter 2025-04-16 09:33:53 -06:00
commit cb952b284e
17 changed files with 2300 additions and 1599 deletions

View file

@ -149,14 +149,10 @@ export default function FirmwareProvider(props: PropsWithChildren<Props>) {
file: Blob,
breaksStorage: boolean
) => {
// let headers: { "Content-Type": string } = {
// "Content-Type": "multipart/form-data"
// };
let headers = {
"Content-Type": "multipart/form-data",
...options().headers
...options().headers,
"Content-Type": "multipart/form-data"
};
headers = { ...headers, ...options().headers };
let opt = { headers };
let data = new FormData();
data.append("version", version);
@ -164,6 +160,7 @@ export default function FirmwareProvider(props: PropsWithChildren<Props>) {
data.append("platform", platformBody(platform));
data.append("file", file);
data.append("breaksStorage", breaksStorage.toString());
console.log(data)
return post(pondURL("/firmware"), data, opt);
};