Skip to content

Commit 345db25

Browse files
committed
💚 lint me baby one more time
1 parent e069ec8 commit 345db25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

personalization-webcomponents/src/ChecklistPreview.ce.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ onMounted(() => {
265265
});
266266
267267
function _authChangedCallback(authEventDetails?: AuthorizationEventDetails) {
268-
if(authEventDetails && authEventDetails.accessToken)
268+
if (authEventDetails && authEventDetails.accessToken)
269269
setAccessToken(authEventDetails.accessToken);
270270
}
271271
@@ -313,7 +313,7 @@ function _saveChecklistAcceptedDSE() {
313313
})
314314
.then((resp) => {
315315
if (resp.ok) {
316-
resp.json().then((createResponse: {id: string}) => {
316+
resp.json().then((createResponse: { id: string }) => {
317317
location.href = `${props.checklistDetailUrl}?${QUERY_PARAM_CHECKLIST_ID}=${createResponse.id}`;
318318
});
319319
} else {

0 commit comments

Comments
 (0)