Skip to content

Commit

Permalink
refactor: 마우스 호버 시 tooltip 무조건 표시
Browse files Browse the repository at this point in the history
  • Loading branch information
six-standard committed Jan 6, 2025
1 parent 8e29eb5 commit 6a3a87a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(with-tracker)/(auth-required)/main/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const Content = () => {

const { data: summaries } = useQuery({
queryKey: [PATHS.SUMMARY],
queryFn: async () => postSummary({}),
queryFn: async () => await postSummary({}),
});

useEffect(() => {
Expand Down
1 change: 1 addition & 0 deletions src/components/auth-required/main/Section/Graph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ export const Graph = ({ id }: IProp) => {
options={{
responsive: true,
animation: false,
interaction: { intersect: false },
plugins: {
legend: {
display: false,
Expand Down

0 comments on commit 6a3a87a

Please sign in to comment.