Skip to content

Commit

Permalink
fix: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
leober-ramos33 committed Oct 22, 2023
1 parent dab4a45 commit 41fcd99
Show file tree
Hide file tree
Showing 4 changed files with 823 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/article/ResumeWithAI.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function ResumeWithAI({ pdf }) {
setResume(data);
setResumeIsLoading(false);
});
}, []);
}, [pdf]);

return (
<div className="pt-8 border-t border-gray-300 lg:border-t-0 lg:border-l lg:pl-8 lg:pt-0">
Expand Down
4 changes: 2 additions & 2 deletions app/search/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default async function Search({ searchParams }) {
{articles.length > 1 && (
<ul className="mt-8 space-y-6">
{articles.map((article, idx) => (
<li>
<li key={idx}>
<a
href={"/article/?id=" + article.url}
key={idx}
Expand All @@ -120,7 +120,7 @@ export default async function Search({ searchParams }) {
</a>

<p
class="block max-w-3xl mt-2 text-xs text-gray-800 truncate"
className="block max-w-3xl mt-2 text-xs text-gray-800 truncate"
style={{
lineClamp: 3,
boxOrient: "vertical",
Expand Down
Loading

0 comments on commit 41fcd99

Please sign in to comment.