mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Formatting and list hook fix
This commit is contained in:
@@ -21,10 +21,7 @@ export const SceneListTable: React.FC<ISceneListTableProps> = (
|
||||
|
||||
const renderPerformers = (performers: Partial<GQL.Performer>[]) =>
|
||||
performers.map(performer => (
|
||||
<Link
|
||||
key={performer.id}
|
||||
to={NavUtils.makePerformerScenesUrl(performer)}
|
||||
>
|
||||
<Link key={performer.id} to={NavUtils.makePerformerScenesUrl(performer)}>
|
||||
<h6>{performer.name}</h6>
|
||||
</Link>
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user