Skip to content

Commit 50f2d4c

Browse files
committed
chore: revert unnecessary type parameter on useAnalyticsQuery
Signed-off-by: Pawel Kosiec <pawel.kosiec@databricks.com>
1 parent 64b3cf7 commit 50f2d4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

template/client/src/pages/analytics/AnalyticsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { sql } from "@databricks/appkit-ui/js";
2020
import { useState } from 'react';
2121

2222
export function AnalyticsPage() {
23-
const { data, loading, error } = useAnalyticsQuery<{ value: string }[]>('hello_world', {
23+
const { data, loading, error } = useAnalyticsQuery('hello_world', {
2424
message: sql.string('hello world'),
2525
});
2626

0 commit comments

Comments
 (0)