Skip to content

Commit 03546b6

Browse files
committed
swap whitepapers and others places
1 parent e8e03a2 commit 03546b6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/pages/resources/research-lab.astro

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import { icons } from "@/utils/icons";
1717
import {
1818
iacrPapers,
1919
mrlBulletins,
20-
otherPapers,
2120
whitepapers,
21+
otherPapers,
2222
} from "@/data/resources/research-lab";
2323
2424
const paperTabs = [
@@ -30,14 +30,14 @@ const paperTabs = [
3030
label: t("knowledge-base:researchLab.papers.tabs.iacr"),
3131
count: iacrPapers.length,
3232
},
33-
{
34-
label: t("knowledge-base:researchLab.papers.tabs.other"),
35-
count: otherPapers.length,
36-
},
3733
{
3834
label: t("knowledge-base:researchLab.papers.tabs.whitepapers"),
3935
count: whitepapers.length,
4036
},
37+
{
38+
label: t("knowledge-base:researchLab.papers.tabs.other"),
39+
count: otherPapers.length,
40+
},
4141
];
4242
---
4343

@@ -134,7 +134,7 @@ const paperTabs = [
134134
</Fragment>
135135
<Fragment slot="panel-2">
136136
{
137-
otherPapers.map((paper) => (
137+
whitepapers.map((paper) => (
138138
<PaperCard
139139
code={paper.code}
140140
title={paper.title}
@@ -148,7 +148,7 @@ const paperTabs = [
148148
</Fragment>
149149
<Fragment slot="panel-3">
150150
{
151-
whitepapers.map((paper) => (
151+
otherPapers.map((paper) => (
152152
<PaperCard
153153
code={paper.code}
154154
title={paper.title}

0 commit comments

Comments
 (0)