Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Jul 27, 2023
2 parents b9bce00 + 09971e1 commit 732134e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 7 deletions.
25 changes: 22 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint-config-airbnb": "^19.0.4",
"sass": "^1.56.1"
}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/country/components/actors/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function RankingCard({ link, name }) {
<h6 className="fr-card__title">
<Icon name="ri-file-list-3-line" />
<Link href={link} target="blank">
{`${rankingName}`}
{rankingName}
</Link>
</h6>
</div>
Expand All @@ -56,7 +56,7 @@ function AddressCard({ address }) {
{address.postcode && <Text className="fr-mb-0">{address.postcode}</Text>}
{address.city && <Text className="fr-mb-0">{address.city}</Text>}
<Text>
{`${address.country}`}
{address.country}
</Text>
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function SocialNetworkCard({ actorId }) {
<Icon name={`ri-${socialmedia.type}-line`} />
{renderIcon(socialmedia.type)}
<Link href={socialmedia.account} target="_blank">
{`${socialmedia.type}`}
{socialmedia.type}
</Link>
</h6>
</Callout>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/country/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default function Fiche({ exportState }) {
) : null}
{
campusFrance ? (
<SideMenuLink asLink={<Link href={`${campusFrance}`} target="_blank" />} current={(selected === '')}>
<SideMenuLink asLink={<Link href={campusFrance} target="_blank" />} current={(selected === '')}>
<Icon name="ri-arrow-left-right-line" size="1x" />
Voir la fiche Campus France
</SideMenuLink>
Expand Down

0 comments on commit 732134e

Please sign in to comment.