style: remove redundant space

This commit is contained in:
Shivam Mishra
2026-03-11 13:27:28 +05:30
parent 17a6fa6c1d
commit 0893ff3548
5 changed files with 1 additions and 7 deletions
@@ -18,9 +18,7 @@ const MAXIMUM_FILE_UPLOAD_SIZE = 4; // in MB
const createState = (
content,
placeholder,
plugins = [],
methods = {},
enabledMenuOptions
) => {
@@ -35,8 +35,7 @@ export default {
default: '00:00',
},
// inbox prop is used in /mixins/inboxMixin,
// remove this props when refactoring to composable if not needed
// remove this props when refactoring to composable if not neededs
inbox: {
type: Object,
default: () => ({}),
@@ -61,7 +61,6 @@ export class EmailQuoteExtractor {
tempDiv.innerHTML = DOMPurify.sanitize(htmlContent);
// Check for class-based quotes
for (const selector of QUOTE_INDICATORS) {
if (tempDiv.querySelector(selector)) {
return true;
@@ -33,7 +33,6 @@ export const getAlertAudio = async (baseUrl = '', requestContext) => {
.then(response => response.arrayBuffer())
.then(buffer => {
audioCtx.decodeAudioData(buffer).then(playSound);
return new Promise(res => res());
})
.catch(() => {
-1
View File
@@ -1,7 +1,6 @@
const getUuid = () =>
'xxxxxxxx4xxx'.replace(/[xy]/g, c => {
const r = (Math.random() * 16) | 0;
const v = c === 'x' ? r : (r & 0x3) | 0x8;
return v.toString(16);
});