Skip to content

Commit

Permalink
Merge branch 'feat-messaging-overview' into feat-messaging-create-pus…
Browse files Browse the repository at this point in the history
…h-message
  • Loading branch information
TorstenDittmann authored Jan 2, 2024
2 parents f92dfce + c096073 commit ea3c866
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
# - name: Audit dependencies
# run: npm audit --audit-level low
- name: Audit dependencies
run: npm audit --audit-level low
- name: Install dependencies
run: npm ci
- name: Svelte Diagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ export const load: LayoutLoad = async ({ params, depends }) => {
}
);

console.log(response);

try {
return {
header: Header,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,6 @@
}
}
onDestroy(() => {
console.log('destroy');
});
const stepsComponents: WizardStepsType = new Map();
stepsComponents.set(1, {
label: 'Configure',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
promises.push(promise);
}
await Promise.all(promises);
console.log($providerParams[$provider]);
}
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
async function sendTestSMS() {
const email = selected === 'self' ? $user.email : otherEmail;
console.log(email);
createSMSMessage({
topics: $messageParams[ProviderTypes.Email]?.topics || [],
Expand Down

0 comments on commit ea3c866

Please sign in to comment.