1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Chore: Fixed TS error

This commit is contained in:
Laurent Cozic 2022-11-28 18:21:18 +01:00
parent 58da15432f
commit 59303087dc

View File

@ -38,7 +38,7 @@ const encodeHtml = (decodedText: string): string => {
.replace(/{{> /gi, '{{> '); // Don't break Mustache partials .replace(/{{> /gi, '{{> '); // Don't break Mustache partials
}; };
export default (html: string, languageCode: string, translations: Record<string, string>) => { export default (html: string, _languageCode: string, translations: Record<string, string>) => {
const output: string[] = []; const output: string[] = [];
interface State { interface State {