Skip to content

Commit 578419d

Browse files
committed
fix: lint error
1 parent 60a7d58 commit 578419d

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/libs/Navigation/helpers/dynamicRoutesUtils/createDynamicRoute.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ const combinePathAndSuffix = (basePath: string, suffixWithQuery: string): Route
5454
return `${combinedPath}${mergedQuery}` as Route;
5555
};
5656

57-
/** Adds dynamic route name (with optional query params) to the current URL and returns it
57+
/** Adds dynamic route name (with optional query params) to the current URL and returns it
5858
*
5959
* @param dynamicRouteSuffixWithParams - The dynamic route suffix with optional query params
6060
* @param basePath - The base path to use for the dynamic route
6161
*
62-
* @returns The combined dynamic route path and query string
63-
*/
62+
* @returns The combined dynamic route path and query string
63+
*/
6464
const createDynamicRoute = (dynamicRouteSuffixWithParams: string, basePath?: string): Route => {
6565
const [suffixPath] = splitPathAndQuery(dynamicRouteSuffixWithParams);
6666

src/pages/workspace/categories/ImportedCategoriesPage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import ImportSpreadsheetColumns from '@components/ImportSpreadsheetColumns';
66
import ImportSpreadsheetConfirmModal from '@components/ImportSpreadsheetConfirmModal';
77
import ScreenWrapper from '@components/ScreenWrapper';
88
import useCloseImportPage from '@hooks/useCloseImportPage';
9-
import useDynamicBackPath from '@hooks/useDynamicBackPath';
109
import useLocalize from '@hooks/useLocalize';
1110
import useOnyx from '@hooks/useOnyx';
1211
import usePolicy from '@hooks/usePolicy';

0 commit comments

Comments
 (0)