diff options
author | Parker <contact@pkrm.dev> | 2024-12-18 19:33:20 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-12-18 19:33:20 -0600 |
commit | f2e84954823641838a863134ad1034f6234bb94d (patch) | |
tree | 73d276816bb2cb44c993e97d0d24b213b2d16e00 /app/src | |
parent | b04208899848b8670ac66bdd6ee64d8d51384aad (diff) |
Remove unused import
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/components/Dashboard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/components/Dashboard.tsx b/app/src/components/Dashboard.tsx index 03c4c94..3f20ebe 100644 --- a/app/src/components/Dashboard.tsx +++ b/app/src/components/Dashboard.tsx @@ -1,7 +1,7 @@ import React, { useState, useEffect, FormEvent } from 'react'; import axios from 'axios'; import styles from '../styles/Dashboard.module.css'; -import { useNavigate, Link } from 'react-router-dom'; +import { useNavigate } from 'react-router-dom'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faTrash } from '@fortawesome/free-solid-svg-icons'; import Navbar from './Navbar'; |