-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update formatting and dependencies across multiple files
- Remove unnecessary blank lines in issue templates and other markdown files. - Add semicolons to JavaScript and TypeScript files for consistency. - Update formatting for better readability and consistency. - Update package dependencies in package-lock.json and yarn.lock. - Apply consistent import ordering and spacing in various components. - Ensure newlines at the end of files where missing.
- Loading branch information
1 parent
73d074e
commit 2f8fea3
Showing
42 changed files
with
2,430 additions
and
926 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
NEXT_PUBLIC_API_BASE_URL=https://api.gridape.com/api/v1 | ||
NEXT_PUBLIC_CSRF_COOKIE_URL=https://api.gridape.com/sanctum/csrf-cookie | ||
# NEXT_PUBLIC_API_BASE_URL=http://127.0.0.1:8000/api/v1 | ||
# NEXT_PUBLIC_CSRF_COOKIE_URL=http://127.0.0.1:8000/sanctum/csrf-cookie |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,4 @@ about: Describe this issue template's purpose here. | |
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import { handleApiRequest } from '@/lib/api-utils' | ||
import { NextRequest } from 'next/server' | ||
import { handleApiRequest } from '@/lib/api-utils'; | ||
import { NextRequest } from 'next/server'; | ||
|
||
export async function POST(request: NextRequest) { | ||
return handleApiRequest(request, '/auth/login', 'POST') | ||
return handleApiRequest(request, '/auth/login', 'POST'); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { handleApiRequest } from '@/lib/api-utils' | ||
import { NextRequest } from 'next/server' | ||
import { handleApiRequest } from '@/lib/api-utils'; | ||
import { NextRequest } from 'next/server'; | ||
|
||
export async function POST(request: NextRequest) { | ||
return handleApiRequest(request, '/auth/register', 'POST') | ||
} | ||
return handleApiRequest(request, '/auth/register', 'POST'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { handleApiRequest } from '@/lib/api-utils' | ||
import { NextRequest } from 'next/server' | ||
import { handleApiRequest } from '@/lib/api-utils'; | ||
import { NextRequest } from 'next/server'; | ||
|
||
export async function POST(request: NextRequest) { | ||
return handleApiRequest(request, 'auth/resend-verification-mail', 'POST') | ||
} | ||
return handleApiRequest(request, 'auth/resend-verification-mail', 'POST'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { handleApiRequest } from '@/lib/api-utils' | ||
import { NextRequest } from 'next/server' | ||
import { handleApiRequest } from '@/lib/api-utils'; | ||
import { NextRequest } from 'next/server'; | ||
|
||
export async function POST(request: NextRequest) { | ||
return handleApiRequest(request, '/auth/email/verify', 'POST') | ||
} | ||
return handleApiRequest(request, '/auth/email/verify', 'POST'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.