From 8e25b9244c1c1b57f4f3d2da74a0e28e28de9196 Mon Sep 17 00:00:00 2001 From: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Date: Mon, 21 Nov 2022 10:49:55 +0530 Subject: [PATCH] Fix deployment failure due to prettier (extra spaces) (#214) Simply removes extra spaces which are causing prettier to fail deployment, introduced in the PR for USER swagger doc update --- pages/api/users/[userId]/_patch.ts | 2 +- pages/api/users/_post.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/api/users/[userId]/_patch.ts b/pages/api/users/[userId]/_patch.ts index 4204cf7823..3621d820f3 100644 --- a/pages/api/users/[userId]/_patch.ts +++ b/pages/api/users/[userId]/_patch.ts @@ -50,7 +50,7 @@ import { schemaUserEditBodyParams, schemaUserReadPublic } from "@lib/validations * weekStart: * description: Start of the week. Acceptable values are one of [SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY] * type: string - * timeZone: + * timeZone: * description: The user's time zone * type: string * theme: diff --git a/pages/api/users/_post.ts b/pages/api/users/_post.ts index d69f7da43a..faa9a60898 100644 --- a/pages/api/users/_post.ts +++ b/pages/api/users/_post.ts @@ -45,7 +45,7 @@ import { schemaUserCreateBodyParams } from "@lib/validations/user"; * weekStart: * description: Start of the week. Acceptable values are one of [SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY] * type: string - * timeZone: + * timeZone: * description: The new user's time zone * type: string * theme: