diff --git a/plugins/examples/change-logo/src/index.tsx b/plugins/examples/change-logo/src/index.tsx
index 02ca970e9c..3b221d6bcc 100644
--- a/plugins/examples/change-logo/src/index.tsx
+++ b/plugins/examples/change-logo/src/index.tsx
@@ -20,18 +20,19 @@ import Settings, { store } from './settings';
* it's easier to make it look good with light and dark themes.
*/
function SimpleLogo(props: AppLogoProps) {
- const { logoType, className } = props;
+ const { logoType, className, sx } = props;
const useConf = store.useConfig();
const config = useConf();
return config?.url ? (
-
+
) : (
);
}