Skip to content

Commit d20e4d6

Browse files
committed
restored package versioning
1 parent e9c1a0d commit d20e4d6

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

src/components/ApplicationCard.tsx src/components/ApplicationCard.jsx

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1-
import React from 'react';
2-
3-
export type ApplicationCardProps = {
4-
title: string;
5-
description: string;
6-
applicationLink: string;
7-
applicationOpen: boolean;
8-
}
91

102
export default function ApplicationCard ({
113
title,
124
description,
135
applicationLink,
146
applicationOpen
15-
}: ApplicationCardProps) {
7+
}) {
168

179
const apply = (applicationLink) => {
1810
window.open(applicationLink, "_blank");

src/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
"@fortawesome/free-regular-svg-icons": "^5.12.1",
1515
"@fortawesome/free-solid-svg-icons": "^5.12.1",
1616
"@fortawesome/react-fontawesome": "^0.1.9",
17-
"@types/react": "^18.2.55",
18-
"@types/react-dom": "^18.2.19",
1917
"bootstrap": "^4.4.1",
2018
"firebase-tools": "^7.15.1",
2119
"jquery": "^3.4.0",

src/pages/apply.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Particles from 'react-particles-js';
33
import Container from 'react-bootstrap/Container';
44
import Row from 'react-bootstrap/Row';
55
import Col from 'react-bootstrap/Col';
6-
import ApplicationCard from '../components/ApplicationCard.tsx';
6+
import ApplicationCard from '../components/ApplicationCard.jsx';
77

88
import Footer from '../components/Footer';
99
import Navbar from '../components/Navbar';

0 commit comments

Comments
 (0)