Skip to content

Commit af27612

Browse files
committed
merge fixes
1 parent d5a71d2 commit af27612

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

frontend/.eslintrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"parser": "@typescript-eslint/parser",
88
"plugins": ["@typescript-eslint"],
99
"rules": {
10-
"@typescript-eslint/no-explicit-any": "off"
1110
// "prettier/prettier": ["error", { "endOfLine": "auto" }]
1211
}
1312
}

frontend/src/components/ResourcesAndContacts/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// import DiscordLogo from "@/public/assets/discord_logo.svg"
22
import Image from 'next/image';
3-
import { stage1, stage2, stage3 } from '../../../public/data/resourceCards';
3+
import { resourceCards, stage1, stage2, stage3 } from '../../../public/data/resourceCards';
44

55
const boxStyling =
66
'border border-[#595F6D] rounded-lg hover:border-[#788093] hover:bg-[#070034] hover:bg-opacity-75 transition-all duration-300';
@@ -22,7 +22,7 @@ const ResourcesAndContacts = () => {
2222
<div className="py-8 bg-no-repeat bg-center">
2323
<div className="grid grid-cols-4 1 gap-x-9 gap-y-5">
2424

25-
{stage1.map((item: any) => {
25+
{stage1.map((item: resourceCards) => {
2626
return (
2727
<a
2828
key={item.id}
@@ -41,7 +41,7 @@ const ResourcesAndContacts = () => {
4141
);
4242
})}
4343

44-
{stage2.map((item: any) => {
44+
{stage2.map((item: resourceCards) => {
4545
return (
4646
<a
4747
key={item.id}
@@ -60,7 +60,7 @@ const ResourcesAndContacts = () => {
6060
);
6161
})}
6262

63-
{stage3.map((item: any) => {
63+
{stage3.map((item: resourceCards) => {
6464
return (
6565
<a
6666
key={item.id}

package-lock.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)