Skip to content

Commit

Permalink
Fixed Prettier Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
the-bay-kay committed May 22, 2024
1 parent 3e0ddb8 commit 7704af9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions www/js/usePermissionStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ const usePermissionStatus = () => {
androidVersion < 6
? 'intro.appstatus.locperms.description.android-lt-6'
: androidVersion < 10
? 'intro.appstatus.locperms.description.android-6-9'
: androidVersion < 11
? 'intro.appstatus.locperms.description.android-10'
: androidVersion < 12
? 'intro.appstatus.locperms.description.android-11'
: 'intro.appstatus.locperms.description.android-gte-12';
? 'intro.appstatus.locperms.description.android-6-9'
: androidVersion < 11
? 'intro.appstatus.locperms.description.android-10'
: androidVersion < 12
? 'intro.appstatus.locperms.description.android-11'
: 'intro.appstatus.locperms.description.android-gte-12';
logDebug('description tags are ' + androidSettingsDescTag + ' ' + androidPermDescTag);
// location settings
let locSettingsCheck = {
Expand Down Expand Up @@ -392,8 +392,8 @@ const usePermissionStatus = () => {
androidVersion == 12
? 'intro.appstatus.unusedapprestrict.description.android-disable-12'
: androidVersion < 12
? 'intro.appstatus.unusedapprestrict.description.android-disable-lt-12'
: 'intro.appstatus.unusedapprestrict.description.android-disable-gte-13';
? 'intro.appstatus.unusedapprestrict.description.android-disable-lt-12'
: 'intro.appstatus.unusedapprestrict.description.android-disable-gte-13';
let unusedAppsUnrestrictedCheck = {
name: t('intro.appstatus.unusedapprestrict.name'),
desc: t(androidUnusedDescTag),
Expand Down

0 comments on commit 7704af9

Please sign in to comment.