Removing unnecessary default value

This commit is contained in:
Jeff Avallone 2019-01-12 12:21:24 -05:00
parent 024eb57603
commit 1336862bce
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const readURLHash = () => {
// Assuming old-style URL
return {
syntax: 'js',
expr: query || ''
expr: query
};
}
};