Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Kristina Fefelova <[email protected]>
  • Loading branch information
kristina-fefelova committed Dec 26, 2024
1 parent b19c19d commit c1ee397
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions plugins/love-resources/src/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,10 @@ function fillStores (): void {
)
const requestsQuery = createQuery(true)
const requestPromise = new Promise<void>((resolve) =>
requestsQuery.query(
love.class.JoinRequest,
{ person: account.person, status: RequestStatus.Pending },
(res) => {
myRequests.set(res)
resolve()
}
)
requestsQuery.query(love.class.JoinRequest, { person: account.person, status: RequestStatus.Pending }, (res) => {
myRequests.set(res)
resolve()
})
)
const preferencesQuery = createQuery(true)
const preferencePromise = new Promise<void>((resolve) =>
Expand Down

0 comments on commit c1ee397

Please sign in to comment.