mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-28 02:16:07 +00:00
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:
parent
42951bab20
commit
139afeb58e
|
@ -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 },
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue