Skip to content

Commit 4230296

Browse files
committed
Fixed Type Checking? + undid something
- Undid a change that is part of another pr (change name referencing a specific variable)
1 parent 564b40c commit 4230296

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/pages/about.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Image from "next/image";
22
import Link from "next/link";
3-
import LandingPlaceholder from "../../public/landing_placeholder.png";
3+
import LandingPlaceholder from "@/../public/landing_placeholder.png";
44

55
import { ApiMember, useCommittee } from "@/hooks/useCommittee";
66

server/game_dev/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class SocialMedia(models.Model):
8282
socialMediaUserName = models.CharField(max_length=200, blank=True)
8383

8484
def __str__(self):
85-
return f"{self.socialMediaUserName} link for {self.member.name}"
85+
return f"{self.socialMediaName} link for {self.member.name}"
8686

8787

8888
class Committee(models.Model):

0 commit comments

Comments
 (0)