Skip to content

Commit

Permalink
Merge pull request #72 from Draft-Bash/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
StephenFeddes authored Nov 10, 2023
2 parents f8f4fba + cdaa9da commit 21d9838
Show file tree
Hide file tree
Showing 37 changed files with 1,070 additions and 356 deletions.
2 changes: 2 additions & 0 deletions public/images/nbaLogos/1610612741.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions public/images/nbaLogos/1610612745.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions public/images/nbaLogos/1610612748.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/images/news.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/DraftRoom/ChatRoom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ const ChatRoom = () => {

const sendMessage = (message: string) => {
socket?.emit('send-message', message, username);
let messageList: Message[] = [...messages, {message: message, username: username}];
messages.push({message: message, username: username});
setMessages(messageList);
}

useEffect(() => {
Expand Down
2 changes: 2 additions & 0 deletions src/components/DraftRoom/DraftGrade.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ const DraftGrade = (props: Props) => {
draftGrade: props.draftGrade
}),
});
alert('Email Sent!');
setIsDraftGradeOpen(false);
}

return (
Expand Down
70 changes: 0 additions & 70 deletions src/components/DraftRoom/RosterPickList.tsx

This file was deleted.

Loading

0 comments on commit 21d9838

Please sign in to comment.