mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 00:18:45 +01:00
Update eslint to 8.27.0
This commit is contained in:
@@ -6,8 +6,10 @@ import React from 'react';
|
||||
|
||||
const SPACING = 10;
|
||||
|
||||
export const MessageTextMetadataSpacer = ({
|
||||
export function MessageTextMetadataSpacer({
|
||||
metadataWidth,
|
||||
}: Readonly<{ metadataWidth: number }>): ReactElement => (
|
||||
<span style={{ display: 'inline-block', width: metadataWidth + SPACING }} />
|
||||
);
|
||||
}: Readonly<{ metadataWidth: number }>): ReactElement {
|
||||
return (
|
||||
<span style={{ display: 'inline-block', width: metadataWidth + SPACING }} />
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user