Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions public/_redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* /index.html 200
5 changes: 5 additions & 0 deletions src/.bash_history
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ls
cd ..
ls
npm run build
exit
Empty file added src/.cache/motd.legal-displayed
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion src/api/BASE_URL.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const BASE_URL = "https://steach.ssafy.io";
export const BASE_URL = "https://ssafyworld.com";

// 토큰을 가져오는 함수
export const getAuthToken = () => {
Expand Down
Binary file modified src/assets/RTC/cam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/mic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/no_cam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/RTC/no_chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/no_mic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/RTC/no_quiz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/RTC/no_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/RTC/no_students_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/quiz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/RTC/screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/RTC/students_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/main/search/SearchNoResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const SearchNoResult: React.FC = () => {
<div>
<div>
<img
src="http://steach.ssafy.io:8082/img-upload/display/my/akjccuxzqsimage-removebg-preview (3).png"
src="https://steach.ssafy.io/img-upload/display/my/akjccuxzqsimage-removebg-preview (3).png"
alt="no-image"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const TeacherMyLectureList: React.FC = () => {
lecture.lecture_start_time.slice(0, 10)
);
return (
<div
<div
key={index2}
className="grid grid-cols-4 border-b-2 border-gray-400 pt-1"
>
Expand All @@ -143,9 +143,9 @@ const TeacherMyLectureList: React.FC = () => {
{lecture.lecture_title}
</h2>
<p>
{daysAgo > 0
{daysAgo > 0 || lecture.is_completed
? `종료된 강의입니다.`
: daysAgo < 0
: daysAgo < 0 && !lecture.is_completed
? `${-daysAgo}일 후 강의가 있습니다.`
: "오늘 강의입니다."}
</p>
Expand All @@ -169,7 +169,7 @@ const TeacherMyLectureList: React.FC = () => {
</main>
</div>
<div className="flex justify-center items-center col-span-1">
{daysAgo > 0 && lecture.is_completed ? (
{daysAgo > 0 || lecture.is_completed ? (
<TeacherMyLectureListButton
lectureState={"completed"}
lectureId={lecture.lecture_id}
Expand Down