Frontend user#14
Merged
Merged
Conversation
Align server and client for profile editing: update server update-profile DTO (src + compiled outputs) and adjust client-side validation, auth actions, user edit component, user page and post store. Also regenerate Next.js dev build artifacts and turbopack cache/manifests. These changes fix validation rules and wiring for the profile update/edit flow.
Modify server/src/user/user.service.ts to change user service implementation and regenerate build artifacts. Recompiled outputs updated in server/dist (user.service.js, user.service.d.ts, user.service.js.map) and tsconfig.build.tsbuildinfo to keep runtime code and type info in sync.
Add a .capitalize text-transform utility to the global chunk CSS. Update user-related code (actions/auth.ts, app/(root)/user/[id]/page.tsx, components/user/user-dialog.tsx, components/user/user-edit.tsx) to improve authentication and user edit/dialog behavior. Build artifacts and turbopack cache entries (dev cache, CSS source map, trace) were updated as part of the dev build.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request primarily updates several Next.js build manifest files to reflect changes in the application's routing and build outputs. The most significant changes are the addition of new application paths and the removal of certain chunk references from the build manifests, which likely correspond to updates in the application's structure or build process.
Routing and application paths:
/login,/signup, and the main root page under the appropriate app directories inapp-paths-manifest.json, reflecting the introduction or restructuring of authentication and root pages.Build manifest updates:
/_appand/_errorpages in bothbuild-manifest.jsonandfallback-build-manifest.json, indicating a possible change in how these pages are bundled or served. [1] [2]Preview mode configuration:
prerender-manifest.json, which is a routine change that occurs when the preview mode configuration is regenerated.