Skip to content

Commit

Permalink
fix: formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Mar 7, 2024
1 parent 611b9b9 commit e665286
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
title = message.data.title;
body = message.data.body;
if (message.data?.image) {
file = await sdk.forProject.storage.getFile(message.data.image?.bucketId, message.data.image?.fileId);
file = await sdk.forProject.storage.getFile(
message.data.image?.bucketId,
message.data.image?.fileId
);
}
const dataEntries: [string, string][] = [];
Expand Down Expand Up @@ -121,7 +124,7 @@
disabled={message.status !== 'draft'}
bind:value={file}
label="Media"
optionalText="(Optional)" />
optionalText="(Optional)" />
</FormItem>
<form class="form">
<FormItem>
Expand Down

0 comments on commit e665286

Please sign in to comment.