Cannot find log data via Forge UI KIT in the Chrome browser console

Hi @EsedoFredrick,

You shouldn’t need to use Custom UI here.

I answered the same question you asked here: How to show or display store record from Storage API via forge UI Kit - #5 by EsedoFredrick

You can’t see UI kit logs in the Chrome browser dev tools.

In your above example, you can either run leverage Forge tunnel or logs to see the console output.

If you want the output to show on screen, you can just show it as text like the following:

const App = () => {
 const name='Tony More';
 
  return (
    <Fragment>
     <Text>{`Your are welcome: ${name}`}</Text>
  </Fragment>
  );
};