mirror of
https://github.com/nestriness/nestri.git
synced 2026-09-19 17:25:19 +03:00
style: apply the formatter across the tree
The formatter had never been run over these files, so `oxfmt` on a couple of touched files rewrote two dozen others and buried the real change. Running it everywhere once makes the next diff mean something. No behaviour changes: import ordering, line joining, and reindented JSON in the generated migration snapshots. Both test suites and both typechecks give the same answers as before, including the two type errors this does not fix.
This commit is contained in:
@@ -2,8 +2,8 @@ import { Actor } from '@nestri/core/actor';
|
||||
import { Env } from '@nestri/core/env';
|
||||
import { ErrorCodes, VisibleError } from '@nestri/core/error';
|
||||
import { Examples } from '@nestri/core/examples';
|
||||
import { User } from '@nestri/core/user/index';
|
||||
import { Fingerprint } from '@nestri/core/user/fingerprint';
|
||||
import { User } from '@nestri/core/user/index';
|
||||
import { VERIFICATION_TTL_MINUTES, Verification } from '@nestri/core/user/verification';
|
||||
import { Hono } from 'hono';
|
||||
import { describeRoute } from 'hono-openapi';
|
||||
@@ -159,9 +159,7 @@ export namespace UserApi {
|
||||
200: {
|
||||
content: {
|
||||
'application/json': {
|
||||
schema: Result(
|
||||
z.object({ verified: z.boolean() })
|
||||
)
|
||||
schema: Result(z.object({ verified: z.boolean() }))
|
||||
}
|
||||
},
|
||||
description: 'Email verified'
|
||||
|
||||
Reference in New Issue
Block a user