-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/#355 - 검색어 빈 값 요청 처리, 초기 로딩 시 그래프만 다크모드인 문제 수정 #357
Conversation
@@ -15,6 +15,7 @@ export const Search = ({ className }: SearchProps) => { | |||
|
|||
const handleSubmit = (event: FormEvent<HTMLFormElement>) => { | |||
event.preventDefault(); | |||
if (!stockName) return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
서버쪽에도 막아야하는데... 한번 해볼게요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다! 👍
@@ -44,7 +44,11 @@ export const useChart = ({ | |||
const containerInstance = containerRef.current; | |||
|
|||
const { theme } = useContext(ThemeContext); | |||
const graphTheme = theme === 'light' ? lightTheme : darkTheme; | |||
const graphTheme = theme | |||
? theme === 'light' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?를 연속해서 쓸 수 있군요
close #355 #354
✅ 작업 내용
😎 체크 사항