Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Oct 8, 2024
1 parent 21c6973 commit e984dec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-output-target/src/react/ssr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export const createComponentForServerSideRendering = <I extends HTMLElement, E e
continue;
}

const propName = possibleStandardNames[key as keyof typeof possibleStandardNames] || options.properties[key] || key;
const propName =
possibleStandardNames[key as keyof typeof possibleStandardNames] || options.properties[key] || key;
stringProps += ` ${propName}=${propValue}`;
}

Expand Down

0 comments on commit e984dec

Please sign in to comment.