chore(web): remove console debugs

This commit is contained in:
Zack Spear
2023-08-29 15:24:10 -07:00
parent 5494026e29
commit 6539c58c7f
16 changed files with 11 additions and 103 deletions
+3 -1
View File
@@ -46,7 +46,9 @@ const trialStatusCopy = computed((): TrialStatusCopy | null => {
});
const close = () => {
if (trialStatus.value === 'trialStart') { return console.debug('[close] not allowed'); }
if (trialStatus.value === 'trialStart') {
return;
}
trialStore.setTrialStatus('ready');
};
</script>