Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linter #249

Merged
merged 3 commits into from
Sep 24, 2024
Merged
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: 2 additions & 0 deletions agenthub/components/homepage/SectionContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ const SectionContainer = forwardRef(
)
)

SectionContainer.displayName = 'SectionContainer'

export default SectionContainer
2 changes: 1 addition & 1 deletion agenthub/components/homepage/TweetCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function TweetCard(props: TweetCard) {
</div>
</div>

<p className="text-foreground-lighter mt-3 text-base">"{props.quote}"</p>
<p className="text-foreground-lighter mt-3 text-base">&quot;{props.quote}&quot;</p>
</div>
)
}
2 changes: 2 additions & 0 deletions agenthub/components/homepage/logos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,6 @@ const LogosRow: React.FC<{ className?: string }> = ({ className }) => (
</div>
)

Logos.displayName = 'Logos'

export default Logos
2 changes: 1 addition & 1 deletion agenthub/components/ui/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Props = {

const arrowClass = type === 'primary' ? '' : 'relative -left-1 group-hover:left-0'

let buttonStyles = {
const buttonStyles = {
textShadow: 'none',
}
if (type === 'primary') {
Expand Down
Loading