Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable feedback button until a new form is made #93

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import Button from "./Button.Forward";

Check warning on line 6 in frontend/src/components/Footer.tsx

View workflow job for this annotation

GitHub Actions / Lint (16.x)

'Button' is defined but never used
import { faGithub, faInstagram, faTwitter } from "@fortawesome/free-brands-svg-icons";
import { faEnvelope, faAt, faLink } from "@fortawesome/free-solid-svg-icons";
import Socials from "./Socials";
Expand All @@ -12,7 +12,7 @@
const Footer: React.FC = () => {
return (
<div className="footer">
<a id="feedback-buttom" target="__blank" href="https://forms.gle/KaS2VUAmZqfS1Nf26"><Button>Send Feedback →</Button></a>
{/* <a id="feedback-buttom" target="__blank" href="https://forms.gle/KaS2VUAmZqfS1Nf26"><Button>Send Feedback →</Button></a> */}

<p>
Created and maintained by Kishan Sambhi &amp; Madeline Hart. <br />
Expand Down
Loading