Fix prettier complaints

This commit is contained in:
cliffhall
2025-03-08 15:08:12 -05:00
parent a669272fda
commit 952bee2605
3 changed files with 31 additions and 26 deletions

View File

@@ -12,9 +12,9 @@ export const StdErrNotificationSchema = BaseNotificationSchema.extend({
}),
});
export const NotificationSchema = ClientNotificationSchema
.or(StdErrNotificationSchema)
.or(ServerNotificationSchema);
export const NotificationSchema = ClientNotificationSchema.or(
StdErrNotificationSchema,
).or(ServerNotificationSchema);
export type StdErrNotification = z.infer<typeof StdErrNotificationSchema>;
export type Notification = z.infer<typeof NotificationSchema>;