3
0
mirror of https://github.com/Qortal/q-shop.git synced 2025-01-30 14:52:20 +00:00

Removed log

This commit is contained in:
Justin Ferrari 2024-01-03 16:24:42 -05:00
parent 9348a52e97
commit 6131c89f7c

View File

@ -212,7 +212,6 @@ const MyModal: React.FC<MyModalProps> = ({ open, onClose, onPublish }) => {
data64: dataContainerToBase64, data64: dataContainerToBase64,
identifier: `${currentStore.id}-${DATA_CONTAINER_BASE}`, identifier: `${currentStore.id}-${DATA_CONTAINER_BASE}`,
}); });
console.log({ dataContainerCreated });
if (dataContainerCreated && !dataContainerCreated.error) { if (dataContainerCreated && !dataContainerCreated.error) {
dispatch( dispatch(
setDataContainer({ setDataContainer({
@ -229,9 +228,9 @@ const MyModal: React.FC<MyModalProps> = ({ open, onClose, onPublish }) => {
}) })
); );
onClose(); onClose();
setShowCreateNewDataContainerModal(false);
setShowAdvancedSettings(false);
} }
setShowCreateNewDataContainerModal(false);
setShowAdvancedSettings(false);
} catch (error) { } catch (error) {
console.error(error); console.error(error);
navigate("/"); navigate("/");