Skip to content

Commit

Permalink
feat(errors): fixing build creation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrpl committed Aug 7, 2024
1 parent bf4fa51 commit 78bf158
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/component/OracleSuggestor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ const OracleSuggestor = () => {
const [isSubmitEnabled, setIsSubmitEnabled] = useState(false);
const [isSubmitting, setIsSubmitting] = useState(false);
const [countdown, setCountdown] = useState(5);
//eslint-disable-next-line
const [submitStarted, setSubmitStarted] = useState(false);
const [formSubmitted, setFormSubmitted] = useState(false);
const [userId, setUserId] = useState<string | null>(null);
const [assets, setAssets] = useState<Asset[]>([]);
//eslint-disable-next-line
const [loading, setLoadingState] = useState<LoadingStates>(
LoadingStates.NOT_STARTED
);
//eslint-disable-next-line
const [errors, setErrors] = useState<ErrorTypes[]>([]);
//eslint-disable-next-line
const [result, setResult] = useState<any>(null);
const [showOracleDetails, setShowOracleDetails] = useState(false); // New state for showOracleDetails

Expand All @@ -52,6 +56,7 @@ const OracleSuggestor = () => {

const {
loading: deployedLoading,
//eslint-disable-next-line
errors: deployedErrors,
result: deployedResult,
fetchOracleData,
Expand Down

0 comments on commit 78bf158

Please sign in to comment.