Skip to content

Commit bbb3395

Browse files
committed
linting issues causing build to fail
1 parent 1d69065 commit bbb3395

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pages/browse/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const Browse = () => {
7474
}}
7575
/>
7676
))}
77-
</>
77+
</>
7878
) : (
7979
<p>
8080
Your search for <b>{query}</b> returned no results. Please try another search term.

pages/requests/[uuid].js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const Request = () => {
5555
setIsPOError(isPOError)
5656
})()
5757
}
58-
}, [allPOs, isPOError, request, uuid, session])
58+
}, [allPOs, isPOError, request, uuid, session, accessToken])
5959

6060
const isLoading = isLoadingRequest || isLoadingSOWs || isLoadingFiles || isLoadingMessages || isLoadingPOs
6161
const isError = isRequestError || isSOWError || isFilesError|| isMessagesError || isPOError

utils/api/requests.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,15 @@ export const acceptSOW = (request, sowID, accessToken) => {
275275
...sharedRequestData,
276276
name: request.title,
277277
description: request.description,
278+
/* eslint-disable camelcase */
278279
provider_names: [process.env.NEXT_PUBLIC_PROVIDER_NAME],
279280
winning_proposal_id: sowID,
280281
purchase_justifications: [''],
281282
purchase_justification_comment: '',
282283
}
283284

284285
return posting(`/quote_groups/${request.id}/accept_sow.json`, { pg_quote_group: sow }, accessToken)
286+
/* eslint-enable camelcase */
285287
}
286288

287289
/** PUT METHODS */

0 commit comments

Comments
 (0)