mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
fix no-extra-boolean-cast eslint error
This commit is contained in:
parent
83b0798e32
commit
5645a0a5d0
@ -29,7 +29,7 @@ const urlsFromAssets = assets => {
|
||||
.forEach(key => {
|
||||
let asset = assets[key];
|
||||
if (typeof asset === 'string') {
|
||||
if (Boolean(urls[getExtensionForFilename(asset)])) {
|
||||
if (urls[getExtensionForFilename(asset)]) {
|
||||
urls[getExtensionForFilename(asset)].push(asset);
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user