mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Fix heading order
This commit is contained in:
parent
6dc6b44a34
commit
3731bd28ef
@ -22,7 +22,11 @@ export interface DeviceTileProps {
|
||||
}
|
||||
|
||||
const DeviceTileName: React.FC<{ device: ExtendedDevice }> = ({ device }) => {
|
||||
return <Heading size="4">{device.display_name || device.device_id}</Heading>;
|
||||
return (
|
||||
<Heading as="h3" size="4">
|
||||
{device.display_name || device.device_id}
|
||||
</Heading>
|
||||
);
|
||||
};
|
||||
|
||||
const DeviceTile: React.FC<DeviceTileProps> = ({ device, children, isSelected, onClick }) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user