Corrects a small capitalization error in an import path. The RedeemPage code imports components/input/questionMark.svg. The file is at components/Input/questionMark.svg. Running the site locally shows this error:
ERROR in ./app/containers/RedeemPage/index.js
Module not found: Error: Can't resolve 'components/input/questionMark.svg' in '/home/user/repo/github/bookmoons/MyBit-Trust.website/app/containers/RedeemPage'
@ ./app/containers/RedeemPage/index.js 27:0-61 184:19-31
@ ./app/containers/RedeemPage/Loadable.js
@ ./app/containers/App/index.js
@ ./app/app.js
@ multi eventsource-polyfill webpack-hot-middleware/client?reload=true ./app/app.js
Captalizes Input in the import path.
A code search finds no other imports of the file needing update.
Corrects a small capitalization error in an import path. The
RedeemPage
code importscomponents/input/questionMark.svg
. The file is atcomponents/Input/questionMark.svg
. Running the site locally shows this error:Captalizes
Input
in the import path.A code search finds no other imports of the file needing update.