Skip to content

Commit

Permalink
fix: renames action
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarenaldi committed Nov 28, 2024
1 parent 2dc5eb0 commit e05c249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/actions/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ export function refresh(
* Fetch the authenticated sessions associated with the authenticated Account.
*
* ```ts
* const result = await fetchActiveAuthentications(sessionClient);
* const result = await fetchAuthenticatedSessions(sessionClient);
* ```
*
* @param client - The session client for the authenticated Account.
* @param request - The query request.
* @returns The paginated authenticated sessions associated with the authenticated Account.
*/
export function fetchActiveAuthentications(
export function fetchAuthenticatedSessions(
client: SessionClient,
request: AuthenticatedSessionsRequest = {},
): ResultAsync<Paginated<AuthenticatedSession>, UnexpectedError> {
Expand Down

0 comments on commit e05c249

Please sign in to comment.