Skip to content

Commit

Permalink
Fix anonymous default export warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 committed Nov 9, 2023
1 parent b7bdb80 commit 324f6c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion newdle/client/src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,5 @@ class Client {
}
}

export default new Client();
const client = new Client();
export default client;
6 changes: 3 additions & 3 deletions newdle/client/src/locales/es/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ msgstr ""
msgid "Please log in again to confirm your identity"
msgstr ""

#: src/components/creation/timeslots/Timeline.js:373
#: src/components/creation/timeslots/Timeline.js:372
msgid "Revert to the local timezone"
msgstr ""

Expand Down Expand Up @@ -519,11 +519,11 @@ msgstr ""
msgid "Timeslots"
msgstr ""

#: src/components/creation/timeslots/Timeline.js:381
#: src/components/creation/timeslots/Timeline.js:380
msgid "Timezone"
msgstr ""

#: src/components/creation/timeslots/Timeline.js:379
#: src/components/creation/timeslots/Timeline.js:378
msgid "Timezone {revertIcon}"
msgstr ""

Expand Down

0 comments on commit 324f6c3

Please sign in to comment.