Skip to content

Commit

Permalink
style(formatting): run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblackburn committed Oct 27, 2024
1 parent 0dd6f3d commit f634a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/utils/services/tmdb/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class TMDB {
private readonly TMDB_PROFILE_URL =
'https://media.themoviedb.org/t/p/w300_and_h450_bestv2'

constructor(public language: string = 'en-GB') { }
constructor(public language: string = 'en-GB') {}

private TMDB_ENTITY_URL(type: string, id: string, appendToResponse?: string) {
return `${this.TMDB_URL_V3}/${type}/${id}?append_to_response=${appendToResponse}&language=${this.language}`
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/onboarding.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const test = base.extend<{
password: string
}
}>({
getOnboardingData: async ({ }, use) => {
getOnboardingData: async ({}, use) => {
const userData = createUser()
await use(() => {
const onboardingData = {
Expand Down

0 comments on commit f634a18

Please sign in to comment.