Skip to content

Commit

Permalink
Renamed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
elite174 committed Oct 7, 2024
1 parent d89706c commit b24c2b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/render/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ async function renderFrameworkComponent(
let error;

// we'll process solid in the end
renderers.sort((a) => a.name === '@astrojs/solid' ? 1 : -1);
renderers.sort((renderer) => renderer.name === '@astrojs/solid' ? 1 : -1);
for (const r of renderers) {
// As solid is the last renderer in the list
// if we still don't have a renderer, we'll use solid
Expand Down

0 comments on commit b24c2b3

Please sign in to comment.