mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Revert rule @typescript-eslint/prefer-nullish-coalescing
This commit is contained in:
@@ -35,7 +35,7 @@ export async function setupUpload(
|
||||
const data = new FormData();
|
||||
data.append('file', buffer, {
|
||||
contentType: mimeType,
|
||||
filename: mediaFileName ?? binaryFileName,
|
||||
filename: mediaFileName || binaryFileName,
|
||||
});
|
||||
data.append('messaging_product', 'whatsapp');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user