Skip to content

Commit

Permalink
remove debug code & fix disc title not updating
Browse files Browse the repository at this point in the history
  • Loading branch information
spartacus04 committed Mar 27, 2024
1 parent 54ce55e commit cb7fc5a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/lib/components/EditDiscModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
<MinecraftTextbox
placeholder="Name"
bind:value={tempDisc.title.value}
on:input={() => setUpdatedPropery('name')}
on:input={() => setUpdatedPropery('title')}
/>
<MinecraftTextbox
placeholder="Author"
Expand Down
5 changes: 0 additions & 5 deletions src/lib/components/OutputModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -148,19 +148,14 @@
};
const getDesktopAppDownload = (async () => {
// fetch latest successful workflow run for https://github.com/spartacus04/jext-reborn/actions/workflows/build-tauri.yml
const response = await fetch(
'https://api.github.com/repos/spartacus04/jext-reborn/actions/workflows/build-tauri.yml/runs?status=success&per_page=1'
);
const json = await response.json();
console.log(json);
if (json.total_count == 0) return;
// return html url
return json.workflow_runs[0].html_url;
})();
</script>
Expand Down

0 comments on commit cb7fc5a

Please sign in to comment.