Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
thank you for noticing!
changed

Co-authored-by: Maxime Downe <[email protected]>
  • Loading branch information
gurtatiLND and maxitect authored Dec 11, 2024
1 parent 38078d0 commit aa4c885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/toolkit/info/CategoriesInfoPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function CategoriesInfoPage() {
<div className="flex overflow-x-auto whitespace-nowrap space-x-2">
{categories.map((category) => (
<Button
key={category.id} // Use a unique key for each item in the map
key={category.id}
label={category.name}
className=" text-white px-4 py-2 text-sm font-bold rounded-full"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/app/toolkit/info/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export default function ToolkitInfoPage() {
<div className="bg-twd-background text-white min-h-screen px-10 py-6">
{/* Introduction Section */}
<div className="mt-6">
<h1 className="text-2xl font-bold text-white mb-5">
<h2 className="text-xl font-bold text-white mb-5">
What is this Tab About?
</h1>
</h2>
<p className="text-gray-400 leading-relaxed">
Toolkit tab is your personal space to create, organize, and manage a
toolkit that’s tailored to your unique needs and experiences. It’s
Expand Down

0 comments on commit aa4c885

Please sign in to comment.