Skip to content

Commit bed2284

Browse files
committed
Tweaks
1 parent 1587be0 commit bed2284

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/core/components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const TabLabel = props => {
88
const { type } = props
99
const isTs = type === 'ts'
1010
const label = isTs ? 'TypeScript' : 'ReScript'
11-
const Logo = isTs ? ResLogo : TsLogo
11+
const Logo = isTs ? TsLogo : ResLogo
1212

1313
return (
1414
<div style={{ display: 'flex', alignItems: 'center' }}>

docs/plugins/react-native-web-plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function (context, options) {
99
alias: {
1010
react: path.resolve(__dirname, '..', 'node_modules', 'react'),
1111
'react-native$': 'react-native-web',
12-
'@mobily/stacks': path.resolve(__dirname, '..', '..', 'dist', 'index.js'),
12+
'@mobily/stacks': path.resolve(__dirname, '..', '..', 'dist', 'index.min.js'),
1313
},
1414
},
1515
}

0 commit comments

Comments
 (0)