redeploy
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
33e8e45598
commit
12fee79654
|
|
@ -22,7 +22,7 @@ export default function DashboardRecentArticles() {
|
||||||
|
|
||||||
const paginatedArticles = allArticles.slice(
|
const paginatedArticles = allArticles.slice(
|
||||||
(currentPage - 1) * articlesPerPage,
|
(currentPage - 1) * articlesPerPage,
|
||||||
currentPage * articlesPerPage
|
currentPage * articlesPerPage,
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
@ -35,7 +35,6 @@ export default function DashboardRecentArticles() {
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Article List */}
|
|
||||||
<ul className="space-y-4">
|
<ul className="space-y-4">
|
||||||
{paginatedArticles.map((article, index) => (
|
{paginatedArticles.map((article, index) => (
|
||||||
<li key={index} className="flex items-start space-x-3">
|
<li key={index} className="flex items-start space-x-3">
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue