Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojsnunes committed Jun 13, 2024
1 parent 70dd4aa commit d25a491
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const userFactory = (_id: string, user: Partial<IUserDB> = {}): IUserDB =>
_id,
_authID: _id,
...user,
} as IUserDB)
}) as IUserDB

describe('Create howto submission emails', () => {
const db = FirebaseEmulatedTest.admin.firestore()
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ProfileType = {
COLLECTION_POINT: 'collection-point',
} as const

export type ProfileTypeLabel = typeof ProfileType[keyof typeof ProfileType]
export type ProfileTypeLabel = (typeof ProfileType)[keyof typeof ProfileType]

interface LinkList {
label: string
Expand Down
6 changes: 3 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { App } from './App'

initErrorHandler()

const container = document.getElementById('root');
const root = createRoot(container!);
root.render(<App />);
const container = document.getElementById('root')
const root = createRoot(container!)
root.render(<App />)

0 comments on commit d25a491

Please sign in to comment.