mirror of
https://github.com/Radarr/Radarr
synced 2026-01-14 11:33:17 +01:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
import React from 'react';
|
|
|
|
function ArtistMetadataProfilePopoverContent() {
|
|
return (
|
|
<div>
|
|
Select 'None' to only include items manually added via search
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ArtistMetadataProfilePopoverContent;
|