diff --git a/README.md b/README.md
index 15c57a5..9c910fd 100644
Binary files a/README.md and b/README.md differ
diff --git a/assets/screenshot-1.png b/assets/screenshot-1.png
index 2cf4209..b9b5bdd 100644
Binary files a/assets/screenshot-1.png and b/assets/screenshot-1.png differ
diff --git a/assets/screenshot-2.png b/assets/screenshot-2.png
index 8040333..87e397e 100644
Binary files a/assets/screenshot-2.png and b/assets/screenshot-2.png differ
diff --git a/assets/screenshot-3.png b/assets/screenshot-3.png
index 5e297a9..ba6b68c 100644
Binary files a/assets/screenshot-3.png and b/assets/screenshot-3.png differ
diff --git a/src/js/Components/Wizard.js b/src/js/Components/Wizard.js
index eedbdb0..2887a16 100644
--- a/src/js/Components/Wizard.js
+++ b/src/js/Components/Wizard.js
@@ -73,6 +73,16 @@ export default function Wizard(){
.finally(() => setDispatching(false));
}
+ const cancelImport = function(){
+ setCancelling(true);
+ apiFetch({path: '/sifg/v1/import/cancel'}).then((data) => {}).catch((error) => {
+ createErrorNotice( __('Could not cancel import', 'site-import-for-gbp'), {
+ type: 'snackbar',
+ } );
+ })
+ .finally();
+ }
+
useEffect(() => {
const checkImportStatus = () => {
apiFetch({path: '/sifg/v1/import/status'}).then((data) => {
@@ -182,7 +192,7 @@ export default function Wizard(){
{/* checked={selectedOptions.reviews}*/}
{/*/>*/}
-
+