dispatch("reset")}>
@@ -71,9 +64,6 @@
{t("dashboard.schematic.info.members", {members: info.members.map(value => value.name).join(", ")})}
{/if}
- {#if (info.schem.owner === user.id)}
-
- {/if}
\ No newline at end of file
diff --git a/src/components/repo/schem.ts b/src/components/repo/schem.ts
index b711fb1..9392c0f 100644
--- a/src/components/repo/schem.ts
+++ b/src/components/repo/schem.ts
@@ -37,10 +37,6 @@ export class SchematicRepo {
return await fetchWithToken(this.token, `/schem/${id}`).then(value => value.json()).then(SchematicInfoSchema.parse);
}
- public async createDownload(id: number): Promise