File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ export const buildGithubQueryHandler = (
6969
7070 if ( hasLicense ) {
7171 const key = license . spdx_id ;
72- // eslint-disable-next-line require-atomic-updates
7372 license . url = licenseCache [ key ]
7473 ? licenseCache [ key ]
7574 : await extractAndCacheLicense ( license , fetchDetails ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export default {
3838 compensation : {
3939 body :
4040 'Provide the compensation amount for this job using **only** numbers.' ,
41- validate : answer => {
41+ validate : ( answer : string ) => {
4242 const value = Number . parseFloat ( answer . split ( '$' ) . join ( '' ) ) ;
4343 const minimalCompensation = Number . parseFloat ( MINIMAL_COMPENSATION ) ;
4444 return ! Number . isNaN ( value ) && value >= minimalCompensation ;
You can’t perform that action at this time.
0 commit comments