Skip to content

Commit 577e0bc

Browse files
committed
lint fixes
1 parent a93e61b commit 577e0bc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ workflows:
260260
branches:
261261
only:
262262
- dev
263-
- UOF-61_merge-latest-uof
264263

265264
- deployQa:
266265
context : org-global

src/apps/earn/src/earn.routes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ export const rootRoute: string = (
4141
)
4242

4343
export const EARN_APP_PATHS: { [key: string]: string } = {
44-
root: rootRoute,
45-
gigs: `${rootRoute}/gigs`,
4644
challenges: `${rootRoute}/challenges`,
45+
gigs: `${rootRoute}/gigs`,
46+
root: rootRoute,
4747
}
4848

4949
export const toolTitle: string = ToolTitle.earn

src/apps/self-service/src/lib/work-provider/work-functions/work-factory/work.factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ function getType(challenge: Challenge): WorkType {
719719
try {
720720
return JSON.parse(intakeForm.value)
721721
} catch {
722-
return {form: undefined}
722+
return { form: undefined }
723723
}
724724
})()
725725
const workTypeKey: (keyof typeof WorkType) | undefined = Object.entries(WorkType)

0 commit comments

Comments
 (0)