We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e29eb5 commit 6a3a87aCopy full SHA for 6a3a87a
src/app/(with-tracker)/(auth-required)/main/Content.tsx
@@ -40,7 +40,7 @@ export const Content = () => {
40
41
const { data: summaries } = useQuery({
42
queryKey: [PATHS.SUMMARY],
43
- queryFn: async () => postSummary({}),
+ queryFn: async () => await postSummary({}),
44
});
45
46
useEffect(() => {
src/components/auth-required/main/Section/Graph.tsx
@@ -126,6 +126,7 @@ export const Graph = ({ id }: IProp) => {
126
options={{
127
responsive: true,
128
animation: false,
129
+ interaction: { intersect: false },
130
plugins: {
131
legend: {
132
display: false,
0 commit comments