Bump prettier from 3.5.3 to 3.6.2 in /frontend (#108)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andras Schmelczer <andras@schmelczer.dev>
This commit is contained in:
dependabot[bot] 2025-08-30 10:38:25 +01:00 committed by GitHub
parent 0ff3bb5967
commit 3f089bd37e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -16,10 +16,8 @@ export function createPromise<T = unknown>(): [
const creationPromise = new Promise<T>(
(resolve_, reject_) =>
(
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
(resolve = resolve_ as ResolveFunction<T>), (reject = reject_)
)
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
((resolve = resolve_ as ResolveFunction<T>), (reject = reject_))
);
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion