Skip to content

Commit cbd8e8c

Browse files
committed
TSJR-314 - update route
1 parent e9dc2f7 commit cbd8e8c

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

src/apps/admin/src/skills-manager/services/skills-categories.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { UserSkillCategory, xhrDeleteAsync, xhrGetAsync, xhrPostAsync, xhrPutAsy
66

77
const baseUrl = `${EnvironmentConfig.STANDARDIZED_SKILLS_API}/categories`
88

9+
// eslint-disable-next-line @typescript-eslint/no-empty-interface
910
export interface StandardizedSkillCategory extends UserSkillCategory {}
1011

1112
export const useFetchCategories = (): SWRResponse<StandardizedSkillCategory[]> => {

src/apps/admin/src/skills-manager/skills-manager.routes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { lazyLoad, LazyLoadedComponent, PlatformRoute } from '~/libs/core'
22

3-
export const rootRoute: string = '/skills-manager'
3+
export const rootRoute: string = '/skills'
44

55
const SkillsManager: LazyLoadedComponent = lazyLoad(() => import('./SkillsManager'))
66
const LandingPage: LazyLoadedComponent = lazyLoad(() => import('./landing-page'), 'LandingPage')

src/config/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export enum AppSubdomain {
2-
admin = 'admin',
2+
admin = 'manage',
33
accounts = 'account-settings',
44
devCenter = 'devcenter',
55
earn = 'earn',

src/libs/ui/lib/components/form/form-functions/form.functions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ function handleFieldEvent<T extends FormValue>(
192192
function validateField(
193193
formInputDef: FormInputModel,
194194
formElements: HTMLFormControlsCollection,
195+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
195196
event: 'blur' | 'change' | 'submit' | 'initial',
196197
): void {
197198

0 commit comments

Comments
 (0)