Skip to content

Commit

Permalink
restored package versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonava committed Feb 16, 2024
1 parent e9c1a0d commit d20e4d6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
import React from 'react';

export type ApplicationCardProps = {
title: string;
description: string;
applicationLink: string;
applicationOpen: boolean;
}

export default function ApplicationCard ({
title,
description,
applicationLink,
applicationOpen
}: ApplicationCardProps) {
}) {

const apply = (applicationLink) => {
window.open(applicationLink, "_blank");
Expand Down
2 changes: 0 additions & 2 deletions src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"bootstrap": "^4.4.1",
"firebase-tools": "^7.15.1",
"jquery": "^3.4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/apply.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Particles from 'react-particles-js';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
import ApplicationCard from '../components/ApplicationCard.tsx';
import ApplicationCard from '../components/ApplicationCard.jsx';

import Footer from '../components/Footer';
import Navbar from '../components/Navbar';
Expand Down

0 comments on commit d20e4d6

Please sign in to comment.