Skip to content

Commit 6a3a87a

Browse files
committed
refactor: 마우스 호버 시 tooltip 무조건 표시
1 parent 8e29eb5 commit 6a3a87a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/app/(with-tracker)/(auth-required)/main/Content.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const Content = () => {
4040

4141
const { data: summaries } = useQuery({
4242
queryKey: [PATHS.SUMMARY],
43-
queryFn: async () => postSummary({}),
43+
queryFn: async () => await postSummary({}),
4444
});
4545

4646
useEffect(() => {

src/components/auth-required/main/Section/Graph.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ export const Graph = ({ id }: IProp) => {
126126
options={{
127127
responsive: true,
128128
animation: false,
129+
interaction: { intersect: false },
129130
plugins: {
130131
legend: {
131132
display: false,

0 commit comments

Comments
 (0)