File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export type FooterProps = {
6161 | "bottomCopy"
6262 | "brandLink"
6363 | "logo"
64+ | "operatorLogo"
6465 | "partners"
6566 | "partnersTitle"
6667 | "partnersLogos"
@@ -269,7 +270,9 @@ export const Footer = memo(
269270 ) }
270271 >
271272 { ( ( ) => {
272- const children = < p className = { fr . cx ( "fr-logo" ) } > { brandTop } </ p > ;
273+ const children = (
274+ < p className = { fr . cx ( "fr-logo" , classes . logo ) } > { brandTop } </ p >
275+ ) ;
273276
274277 return operatorLogo !== undefined ? (
275278 children
@@ -287,7 +290,10 @@ export const Footer = memo(
287290 ) }
288291 >
289292 < img
290- className = { cx ( fr . cx ( "fr-footer__logo" ) , classes . logo ) }
293+ className = { cx (
294+ fr . cx ( "fr-footer__logo" ) ,
295+ classes . operatorLogo
296+ ) }
291297 style = { ( ( ) => {
292298 switch ( operatorLogo . orientation ) {
293299 case "vertical" :
You can’t perform that action at this time.
0 commit comments