Skip to content

Commit

Permalink
Merge pull request #5212 from kobotoolbox/move-access-logs-query-file…
Browse files Browse the repository at this point in the history
…-to-proper-dir

Move accessLogs.query.ts file to feature directory
  • Loading branch information
magicznyleszek authored Oct 30, 2024
2 parents 4b83658 + 79e836f commit 1c7ccea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {keepPreviousData, useQuery} from '@tanstack/react-query';
import {endpoints} from 'js/api.endpoints';
import type {PaginatedResponse} from 'js/dataInterface';
import {fetchGet} from 'js/api';
import {QueryKeys} from '../queryKeys';
import {QueryKeys} from 'js/query/queryKeys';

export interface AccessLog {
/** User URL */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import React from 'react';
import PaginatedQueryUniversalTable from 'js/universalTable/paginatedQueryUniversalTable.component';

// Utilities
import useAccessLogsQuery, {type AccessLog} from 'js/query/queries/accessLogs.query';
import useAccessLogsQuery, {type AccessLog} from './accessLogs.query';
import {formatTime} from 'js/utils';
// import sessionStore from 'js/stores/session';

Expand Down

0 comments on commit 1c7ccea

Please sign in to comment.