Skip to content

Commit f4e43af

Browse files
committed
remove random d that somehow wasn't even throwing a syntax error, remove console log
1 parent 7375519 commit f4e43af

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pages/requests/[uuid].js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ const Request = () => {
5757
getPOsAsync()
5858
}, [allPOs, isPOError, request?.quotedWareID, uuid, request?.identifier, session?.accessToken])
5959

60-
console.log(allPOs)
6160
const isLoading = isLoadingRequest || isLoadingSOWs || isLoadingFiles || isLoadingMessages || isPOLoading
6261
const isError = isRequestError || isSOWError || isFilesError|| isMessagesError
6362
let documents = (allSOWs) ? [...allSOWs] : []

utils/api/requests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const getAllPOs = async (quotedWareId, uuid, requestIdentifier, accessTok
6161
let allPOs
6262
let enhancedPOArray = []
6363
let arrayOfPOIds = []
64-
try { d
64+
try {
6565
// TODO(summer-cook): eventually we can use the useSWRList hook here instead of mapping & calling the fetcher.
6666
// This hook is actively being contributed to the swr repo, but the semantics of the work are still being debated.
6767
// See https://github.com/vercel/swr/discussions/1988 for the RFC and https://github.com/vercel/swr/pull/2047 for the PR.

0 commit comments

Comments
 (0)