Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/views/Home/components/Sponsors/SponsorsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ export const sponsors: Sponsors = {
website: "https://www.opentrends.net/en",
image: "images/sponsors/seidor.png",
},
{
name: "Grupo Castilla",
image: "images/sponsors/grupo-castilla.png",
website:
"https://www.grupocastilla.es/servicios-rrhh/consultoria-tecnologica/",
Comment on lines +60 to +62
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The order of image and website properties for the newly added 'Grupo Castilla' sponsor (name, image, website) differs from the order defined in the Sponsor interface (name, website, image) on lines 12-14 of this file. The preceding 'Seidor' entry (lines 54-56) also follows the interface order.

For better consistency and maintainability within this data structure, would it be clearer to align the property order with the Sponsor interface definition? This would make it easier for future contributors to understand and modify the data.

Suggested change
image: "images/sponsors/grupo-castilla.png",
website:
"https://www.grupocastilla.es/servicios-rrhh/consultoria-tecnologica/",
website:
"https://www.grupocastilla.es/servicios-rrhh/consultoria-tecnologica/",
image: "images/sponsors/grupo-castilla.png",

},
],
communities: [],
media_partners: [
Expand Down
Loading