Skip to content

Commit

Permalink
Device lib fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fvlvte committed Nov 9, 2023
1 parent ae92c8d commit ee562a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libs/actions/Device/getDeviceInfo/index.android.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import getBaseInfo from './getBaseInfo';
import getOSAndName from './getOSAndName/index.native';
import getOSAndName from './getOSAndName/index';
import {GetDeviceInfo} from './types';

const getDeviceInfo: GetDeviceInfo = () => ({
Expand Down
2 changes: 1 addition & 1 deletion src/libs/actions/Device/getDeviceInfo/index.desktop.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import getBaseInfo from './getBaseInfo';
import getOSAndName from './getOSAndName/index.native';
import getOSAndName from './getOSAndName/index';
import {GetDeviceInfo} from './types';

const getDeviceInfo: GetDeviceInfo = () => ({
Expand Down
2 changes: 1 addition & 1 deletion src/libs/actions/Device/getDeviceInfo/index.ios.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import getBaseInfo from './getBaseInfo';
import getOSAndName from './getOSAndName/index.native';
import getOSAndName from './getOSAndName/index';
import {GetDeviceInfo} from './types';

const getDeviceInfo: GetDeviceInfo = () => ({
Expand Down

0 comments on commit ee562a9

Please sign in to comment.