fix: [code-695]: fix form

This commit is contained in:
calvin 2023-09-13 16:42:48 -06:00
parent fdfa3ff39f
commit 8011df2974
2 changed files with 0 additions and 3 deletions

View File

@ -72,9 +72,7 @@ const ImportSpaceForm = (props: ImportFormProps) => {
} }
} }
const handleImport = async () => { const handleImport = async () => {
console.log('ds')
await handleSubmit(formik.values) await handleSubmit(formik.values)
console.log('pos')
setButtonLoading(false) setButtonLoading(false)
} }
return ( return (

View File

@ -68,7 +68,6 @@ export default function RepositoriesListing() {
// should I include pipeline id here? what if a new pipeline is created? coould check for ids that are higher than the lowest id on the page? // should I include pipeline id here? what if a new pipeline is created? coould check for ids that are higher than the lowest id on the page?
if (repositories?.some(repository => repository.id === data?.id && repository.parent_id === data?.parent_id)) { if (repositories?.some(repository => repository.id === data?.id && repository.parent_id === data?.parent_id)) {
//TODO - revisit full refresh - can I use the message to update the execution? //TODO - revisit full refresh - can I use the message to update the execution?
console.log('here')
refetch() refetch()
} }
} }