chore(template): reformat app and component content files#308
Merged
codebycarson merged 2 commits intomainfrom Mar 9, 2026
Merged
chore(template): reformat app and component content files#308codebycarson merged 2 commits intomainfrom
codebycarson merged 2 commits intomainfrom
Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #308 +/- ##
=======================================
Coverage 79.69% 79.69%
=======================================
Files 83 83
Lines 1305 1305
Branches 158 187 +29
=======================================
Hits 1040 1040
+ Misses 265 259 -6
- Partials 0 6 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Apply code-style normalization across the Next template: convert double quotes to single quotes, adjust import ordering and minor spacing/quote fixes in various app pages and components. Affected files under packages/create-sei/templates/next-template: src/app/development/page.tsx, src/app/layout.tsx, src/app/page.tsx, src/app/resources/page.tsx, src/app/resources/resources.ts, src/components/default/index.tsx, and src/components/landing/index.tsx. No functional logic changes.
besated
approved these changes
Mar 9, 2026
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 standardizes string formatting across the codebase by replacing single quotes with double quotes and updating object property values to use double quotes. It also reorganizes import statements for consistency and readability. The changes impact multiple files in the Next.js template, including component files and resource definitions.
String formatting standardization:
page.tsx,layout.tsx,default/index.tsx,landing/index.tsx, andresources.ts. This includes UI text, notification messages, and style objects. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23]Import and code organization:
layout.tsx,default/index.tsx,landing/index.tsx, andresources/page.tsx. [1] [2] [3] [4]UI consistency improvements:
Resource definitions consistency:
resources.tsto use double quotes for titles, descriptions, hrefs, and color values, aligning with the new formatting standard.Notification and error message updates:
default/index.tsx, improving code consistency and making string search and refactoring easier. [1] [2] [3]