mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Remove unused parameter in styles build script (#9710)
The `devMode` parameter being passed to the `buildScss` function was not being used. The `buildScss` function was declared _inside_ the function in which it is invoked, so the `devMode` variable is already in scope - it doesn't need to be passed in.
This commit is contained in:
parent
6e89b60a4a
commit
84bd2dcce7
@ -50,7 +50,7 @@ function createStyleTasks ({ livereload }) {
|
||||
livereload.changed(event.path)
|
||||
})
|
||||
}
|
||||
await buildScss(devMode)
|
||||
await buildScss()
|
||||
}
|
||||
|
||||
async function buildScss () {
|
||||
|
Loading…
Reference in New Issue
Block a user