Improve User Experience #76
Merged
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 includes various changes to workflows, API routes, and frontend components to improve versioning, enhance security, and optimize data fetching.
Workflow Improvements:
.github/workflows/Tagger.yaml).sandboxanddev) for pull requests and pushes (.github/workflows/VercelPreview.yaml,.github/workflows/lint.yaml). [1] [2]API Route Enhancements:
recentAPI route to clean up the code (src/app/api/clubs/recent/route.ts).searchAPI route to handle authentication more securely and efficiently (src/app/api/clubs/search/route.ts).Frontend Component Optimizations:
Homecomponent inclubs/page.tsxto useSuspensefor data fetching and added secure headers (src/app/clubs/page.tsx). [1] [2]Homecomponent insearch/page.tsxto handle search parameters and useSuspensefor data fetching (src/app/search/page.tsx). [1] [2]ClubListandSearchResultsPagecomponents to use theusehook for data fetching and removed unnecessary state management (src/components/ClubList.tsx,src/components/search/SearchView.tsx). [1] [2] [3] [4] [5] [6]SearchBoxcomponent to accept aqueryprop and set it as the default value in the form (src/components/search/SearchBox.tsx). [1] [2]Code Cleanup:
src/lib/client/club.ts).