style: format code with Prettier

This commit fixes the style issues introduced in 42951ba according to the output
from Prettier.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-05-04 15:52:38 +00:00 committed by GitHub
parent 42951bab20
commit 139afeb58e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ function createCartStore() {
await getItemByUUID(uuid).then((data: Item) => { await getItemByUUID(uuid).then((data: Item) => {
cart.update((cart: Record<string, CartItem>) => cart.update((cart: Record<string, CartItem>) =>
Object.assign({}, cart, { Object.assign({}, cart, {
[uuid]: {uuid, amount, data}, [uuid]: { uuid, amount, data },
}) })
); );
}); });