diff --git a/special-pages/pages/example/app/components/App.jsx b/special-pages/pages/example/app/components/App.jsx
index 91b0cdd746..3ae17eff4a 100644
--- a/special-pages/pages/example/app/components/App.jsx
+++ b/special-pages/pages/example/app/components/App.jsx
@@ -4,5 +4,8 @@ import { useTypedTranslation } from '../types.js';
export function App() {
const { t } = useTypedTranslation();
- return {t('helloWorld')};
+ return
+ Hi There! This is a sample change!
+ {t('helloWorld')}
+ ;
}