ledger gemory draft

This commit is contained in:
Sirttas
2026-05-17 12:42:25 +02:00
parent e81fdc24bb
commit f9ae0d142a
35 changed files with 2017 additions and 2763 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ const modelValue = defineModel({ default: false });
</label>
</template>
<style scoped lang="postcss">
<style scoped>
@reference "tailwindcss";
input:checked ~ span:last-child {
--tw-translate-x: 1.75rem;
}
+1 -5
View File
@@ -1,5 +1,3 @@
import { marbasAxiosInstance } from "@/marbas";
export type ReprocessItemValues = {
typeID: number;
name: string;
@@ -22,7 +20,5 @@ export const reprocess = async (items: string, minerals: string, efficiency?: nu
};
const source = JSON.stringify(sourceJson);
const response = await marbasAxiosInstance.post('/reprocess/', source, {params: {efficiency: efficiency ?? 0.55}});
return response.data;
return []
};