From 30c4d5baf13b6fd4aabe43f90fc8a198368334c5 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Fri, 19 May 2023 22:25:04 -0700 Subject: [PATCH] Add param to search route to denote tab --- src/renderer/router/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/router/routes.ts b/src/renderer/router/routes.ts index 97c74425..66cf71f8 100644 --- a/src/renderer/router/routes.ts +++ b/src/renderer/router/routes.ts @@ -19,7 +19,7 @@ export enum AppRoute { PLAYLISTS = '/playlists', PLAYLISTS_DETAIL = '/playlists/:playlistId', PLAYLISTS_DETAIL_SONGS = '/playlists/:playlistId/songs', - SEARCH = '/search', + SEARCH = '/search/:itemType', SERVERS = '/servers', SETTINGS = '/settings', }