@@ -17,8 +17,8 @@ import { icons } from "@/utils/icons";
1717import {
1818 iacrPapers ,
1919 mrlBulletins ,
20- otherPapers ,
2120 whitepapers ,
21+ otherPapers ,
2222} from " @/data/resources/research-lab" ;
2323
2424const 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