Skip to content

Commit

Permalink
Fix ESLint Errors by removing unused variables in page.tsx. Replace m…
Browse files Browse the repository at this point in the history
…issing Officer photos with ssd logo due to error in loading image or not having the image
  • Loading branch information
Phantom0110 committed Dec 9, 2023
1 parent 3e21c33 commit 6d9ae34
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/app/about/officer-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
trevor_richardson: {
position: "",
image: "public/officers/Trevor_Richardson.jpg",
image: "/ssd_logo.svg",
name: "Trevor Richardson",
socialLinksData: [
{
Expand All @@ -230,7 +230,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
ranger_chenore: {
position: "",
image: "public/officers/Ranger_Chenore.jpg",
image: "/ssd_logo.svg",
name: "Ranger Chenore",
socialLinksData: [
{
Expand All @@ -242,7 +242,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
eric_navar: {
position: "",
image: "public/officers/Eric_Navar.jpg",
image: "/ssd_logo.svg",
name: "Eric Navar",
socialLinksData: [
{
Expand Down Expand Up @@ -278,7 +278,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
isaac_fuenmayor: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Isaac Fuenmayor",
socialLinksData: [
{
Expand All @@ -302,7 +302,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
andrew_kennedy: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Andrew Kennedy",
socialLinksData: [
{
Expand All @@ -326,7 +326,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
katherine_chan: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Katherine Chan",
socialLinksData: [
{
Expand All @@ -350,7 +350,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
song_li: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Song Li",
socialLinksData: [
{
Expand All @@ -362,7 +362,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
scott_harrison: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Scott Harrison",
socialLinksData: [
{
Expand All @@ -374,7 +374,7 @@ export const officerData: { [key: string]: OfficerCardProps } = {
},
jacob_bleser: {
position: "",
image: "",
image: "/ssd_logo.svg",
name: "Jacob Bleser",
socialLinksData: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Image from "next/image";
import styles from "./About.module.css";

import OfficerCard from "./officer-card";
import officerCardData, { officerData, positionData } from "./officer-data";
import { positionData } from "./officer-data";

export default function About() {
// const officerCards = officerCardData.map((cardData) => (
Expand Down

0 comments on commit 6d9ae34

Please sign in to comment.