See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import axios from 'axios' | |
| import toast from './toast' | |
| function errorResponseHandler(error) { | |
| // check for errorHandle config | |
| if( error.config.hasOwnProperty('errorHandle') && error.config.errorHandle === false ) { | |
| return Promise.reject(error); | |
| } | |
| // if has response show the error |
| #!/bin/bash | |
| rm -f *.svg.png | |
| for f in *.svg; do | |
| echo "File -> $f" | |
| qlmanage -t -s 1000 -o . $f | |
| done | |
| for f in *.svg.png; do |