Skip to content

Commit

Permalink
fix(options): 🔇 remove debugging log
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNZL committed Jul 20, 2022
1 parent dcc2ccd commit 07b2f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options/PropertySelects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class SelectPropertyValueSelect extends PropertySelect {

this.propertySelect.addEventListener('input', async () => {
const databaseId = getDatabaseId();
if (!typeGuards.isUUIDv4(databaseId)) return console.log('bye!', { databaseId });
if (!typeGuards.isUUIDv4(databaseId)) return;

const accessToken = (await Storage.getNotionAuthorisation()).accessToken ?? await CONFIGURATION.FIELDS['notion.accessToken'].input.validate(true);

Expand Down

0 comments on commit 07b2f54

Please sign in to comment.