Skip to content

Commit

Permalink
Removing some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Oct 5, 2023
1 parent eba923d commit 9a50126
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/TabsFile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,13 @@ export default function TabsFile({
}

const handleUpload = async () => {
console.log('1 upload is loading', uploadIsLoading)
if (!file) {
return
}

switch (step) {
case 'quote':
setUploadIsLoading(true)
console.log('2 upload is loading', uploadIsLoading)
// Fetch a quote
await getQuote({
type: items[tabIndex].type,
Expand All @@ -349,7 +347,6 @@ export default function TabsFile({
break
case 'upload':
setUploadIsLoading(true)
console.log('3 upload is loading', uploadIsLoading)
// Upload File
await getUpload({
quoteId: quote.quoteId,
Expand All @@ -361,7 +358,6 @@ export default function TabsFile({
break
case 'ddoLink':
setUploadIsLoading(true)
console.log('4 upload is loading', uploadIsLoading)
// Get DDO Link
await getDDOlink(quote.quoteId)
break
Expand Down

0 comments on commit 9a50126

Please sign in to comment.