chore: format files with Prettier 3

This commit is contained in:
Eric Liu 2024-11-11 21:27:04 -08:00
commit 8e996dc683
391 changed files with 3725 additions and 3785 deletions

View file

@ -12,20 +12,20 @@
let checked = false;
</script>
<Button on:click="{() => (open = true)}">Review changes</Button>
<Button on:click={() => (open = true)}>Review changes</Button>
<ComposedModal bind:open on:submit="{() => (open = false)}">
<ComposedModal bind:open on:submit={() => (open = false)}>
<ModalHeader label="Changes" title="Confirm changes" />
<ModalBody hasForm>
<Checkbox labelText="I have reviewed the changes" bind:checked />
</ModalBody>
<ModalFooter
primaryButtonText="Proceed"
primaryButtonDisabled="{!checked}"
secondaryButtons="{[{ text: 'Cancel' }, { text: 'Review' }]}"
on:click:button--secondary="{({ detail }) => {
if (detail.text === 'Cancel') open = false;
if (detail.text === 'Review') console.log('Review');
}}"
primaryButtonDisabled={!checked}
secondaryButtons={[{ text: "Cancel" }, { text: "Review" }]}
on:click:button--secondary={({ detail }) => {
if (detail.text === "Cancel") open = false;
if (detail.text === "Review") console.log("Review");
}}
/>
</ComposedModal>