Skip to content

Commit

Permalink
remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
greatsamist committed Jul 24, 2024
1 parent 8b5a6c1 commit ba2996d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/app/app/api/google/callback/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function GET(request: NextRequest) {
const parsedRedirectUrl = redirectUrl
? originUrl + redirectUrl
: `/studio`
console.log('authuser: ' + authuser, searchParams)

if (!code || !authToken) {
console.error('Google or auth token does not exist')
return redirect(parsedRedirectUrl)
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/ui/Player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function PlayerWithControls(props: {

<Player.ErrorIndicator
matcher="offline"
className="absolute inset-0 flex select-none flex-col items-center justify-center gap-4 bg-black/40 text-center backdrop-blur-lg duration-1000 animate-in fade-in-0 data-[visible=true]:animate-in data-[visible=false]:animate-out data-[visible=false]:fade-out-0 data-[visible=true]:fade-in-0">
className="absolute inset-0 flex select-none flex-col items-center justify-center gap-4 bg-black/40 text-center backdrop-blur-lg animate-in fade-in-0 duration-1000 data-[visible=true]:animate-in data-[visible=false]:animate-out data-[visible=false]:fade-out-0 data-[visible=true]:fade-in-0">
<div className="flex flex-col gap-5">
<div className="flex flex-col gap-1">
<div className="text-lg font-bold sm:text-2xl">
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/routes/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const models: TsoaRoute.Models = {
// WARNING: This file was auto-generated with tsoa. Please do not modify it. Re-run tsoa to re-generate this file: https://github.com/lukeautry/tsoa
StateStatus: {
dataType: 'refEnum',
enums: ['pending', 'completed', 'canceled', 'sync'],
enums: ['pending', 'completed', 'canceled', 'sync', 'error'],
},
// WARNING: This file was auto-generated with tsoa. Please do not modify it. Re-run tsoa to re-generate this file: https://github.com/lukeautry/tsoa
StateType: {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/swagger/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@
"type": "string"
},
"StateStatus": {
"enum": ["pending", "completed", "canceled", "sync"],
"enum": ["pending", "completed", "canceled", "sync", "error"],
"type": "string"
},
"StateType": {
Expand Down

0 comments on commit ba2996d

Please sign in to comment.