(tab?: ConfigTab)
| 20 | |
| 21 | // Helper function to build config URLs with tabs |
| 22 | export const buildConfigRoute = (tab?: ConfigTab): string => { |
| 23 | return tab ? `${ROUTES.CONFIG}?tab=${tab}` : ROUTES.CONFIG; |
| 24 | }; |
| 25 | |
| 26 | // Typed config route builders for common tabs |
| 27 | export const CONFIG_ROUTES = { |