Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
4 changes: 2 additions & 2 deletions pages/tools/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default function ToolsIndex() {
const image = '/img/social/tools-dashboard-card.webp';

return (
<div>
<GenericLayout title='Tools' description={description} image={image}>
<div className='my-6'>
<GenericLayout title='Tools' description={description} image={image} >
Comment on lines +20 to +21
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Pipeline failing – remove stray space before >

Prettier flags the extra space after the last prop on line 21, breaking CI.

-      <GenericLayout title='Tools' description={description} image={image} >
+      <GenericLayout title='Tools' description={description} image={image}>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<div className='my-6'>
<GenericLayout title='Tools' description={description} image={image} >
<div className='my-6'>
<GenericLayout title='Tools' description={description} image={image}>
🧰 Tools
🪛 GitHub Actions: PR testing - if Node project

[error] 21-21: Prettier formatting error: Delete extra space (prettier/prettier).

🤖 Prompt for AI Agents
In pages/tools/index.tsx around lines 20 to 21, there is a stray space before
the closing angle bracket of the GenericLayout component. Remove the extra space
after the last prop and before the closing '>' to fix the Prettier formatting
error and resolve the CI pipeline failure.

<div>
<div className='mt-12 text-center'>
<Heading level={HeadingLevel.h1} typeStyle={HeadingTypeStyle.lg}>
Expand Down
Loading