Skip to content

Commit

Permalink
chore: add fullstops
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicGBauer committed Apr 24, 2024
1 parent b3897b9 commit e3a7ec1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/hooks/usePowerSyncQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React from 'react';
import { usePowerSync } from './PowerSyncContext';

/**
* @deprecated use {@link useQuery} instead
* @deprecated use {@link useQuery} instead.
* A hook to access a single static query.
* For an updated result, use {@link usePowerSyncWatchedQuery} instead
* For an updated result, use {@link usePowerSyncWatchedQuery} instead.
*/
export const usePowerSyncQuery = <T = any>(sqlStatement: string, parameters: any[] = []): T[] => {
const powerSync = usePowerSync();
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/hooks/usePowerSyncWatchedQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
import { usePowerSync } from './PowerSyncContext';

/**
* @deprecated use {@link useQuery} instead
* @deprecated use {@link useQuery} instead.
* A hook to access the results of a watched query.
* @example
* export const Component = () => {
Expand Down

0 comments on commit e3a7ec1

Please sign in to comment.