Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Leblow committed Dec 5, 2023
1 parent 44bdad6 commit d7fc545
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ export const BasicMessageComponent: React.FC<BasicMessageProps & FileActionsProp
const userLabel = messageDisplayData?.isDuplicated
? UserLabelType.DUPLICATE
: !messageDisplayData?.isRegistered
? UserLabelType.UNREGISTERED
: null
? UserLabelType.UNREGISTERED
: null

const infoMessage = messageDisplayData.type === 3 // 3 stands for MessageType.Info

Expand Down
8 changes: 4 additions & 4 deletions packages/mobile/src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import { InitTransform } from './init/init.transform'

FilesystemStorage.config({
storagePath: `${RNFetchBlob.fs.dirs.DocumentDir}/persistStore2`,
encoding: "utf8",
toFileName: (name: string) => name.split(":").join("-"),
fromFileName: (name: string) => name.split("-").join(":"),
});
encoding: 'utf8',
toFileName: (name: string) => name.split(':').join('-'),
fromFileName: (name: string) => name.split('-').join(':'),
})

const persistedReducer = persistReducer(
{
Expand Down

0 comments on commit d7fc545

Please sign in to comment.