Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e81ac42
refactor (Footer): changed project year and mobile style to center.
Francine02 Nov 8, 2025
769c117
feat (schemas): schema for URL validation
Francine02 Nov 10, 2025
96cf52d
fix (service): added default response for error message
Francine02 Nov 11, 2025
95ac572
refactor (footer): change `contacts` to uppercase
Francine02 Dec 22, 2025
6d460f8
refactor (constants): change constants to uppercase pattern
Francine02 Dec 22, 2025
e86c525
feat(components): `PdfViewer` with iframe to view the pdf generated
Francine02 Feb 5, 2026
466fa2f
refactor: change the name of the constants to uppercase
Francine02 Feb 5, 2026
33c2fa7
feat(sidebar): add summary page link to sidebar
Francine02 Feb 5, 2026
5c92bc4
refactor(service): change to use the type of the zod generated
Francine02 Feb 5, 2026
726bd1f
refactor: rename url schema to summary schema and add output format enum
Francine02 Feb 5, 2026
27b8360
feat(form): add summary output formats constants
Francine02 Feb 5, 2026
18988a7
feat(components): add reusable radio input component
Francine02 Feb 5, 2026
e226f21
feat(service): add summary generation API request
Francine02 Feb 5, 2026
9b5da1d
feat(components): add file view component
Francine02 Feb 5, 2026
6e7d103
feat(components): add summary generated state component
Francine02 Feb 5, 2026
d072e8e
feat: add summary generation form and page
Francine02 Feb 5, 2026
e25dc1c
feat(components): add radio interface
Francine02 Feb 5, 2026
7df1cab
chore: add pnpm overriddes for dependency resolutions
Francine02 Feb 5, 2026
23eaea5
chore: adjust tsconfig and Next route types
Francine02 Feb 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />
import "./.next/dev/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,18 @@
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"typescript": "~5.7.2"
},
"pnpm": {
"overrides": {
"tar@=7.5.1": ">=7.5.2",
"next@>=15.5.0-canary.0 <15.5.7": ">=15.5.7",
"next@>=15.5.1-canary.0 <15.5.8": ">=15.5.8",
"tar@<=7.5.2": ">=7.5.3",
"tar@<=7.5.3": ">=7.5.4",
"next@>=10.0.0 <15.5.10": ">=15.5.10",
"next@>=15.5.1-canary.0 <15.5.10": ">=15.5.10",
"tar@<7.5.7": ">=7.5.7",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1"
}
}
}
118 changes: 70 additions & 48 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/app/(private)/confirmar-exclusao/[token]/form.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';
import { Loading } from '@/components/Loading';
import { deleteAccount } from '@/constants/form/delete-account';
import { DELETE_ACCOUNT } from '@/constants/form/delete-account';
import { pongDeleteAccount } from '@/service/my-account/pong-delete-account';
import { clearStorage } from '@/utils/storage/clear-storage';
import { useParams } from 'next/navigation';
Expand Down Expand Up @@ -31,7 +31,7 @@ export function ConfirmDeleteAccountForm() {
deleteAccount();
}, []);

const current = deleteAccount.find((item) => item.key === status);
const current = DELETE_ACCOUNT.find((item) => item.key === status);

return (
<section className="min-h-screen flex flex-col justify-center items-center text-center">
Expand Down
Loading