Skip to content

Commit

Permalink
Update app.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
HristoKolev authored Aug 30, 2024
1 parent 77a200f commit 60401b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 2-advanced/services/admin/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import AdminUI from "@interopio/manager-admin-ui";
const serverBase = "/server";
const base = process.env.REACT_APP_BASE;
const auth = "none";
const authUser = "admin"

const App = () => {
console.log(`hello - ${serverBase}, ${base}`);
Expand All @@ -13,10 +14,11 @@ const App = () => {
apiURL={serverBase}
baseName={base}
theme="dark"
authUser={authUser}
auth={auth}
users={{ canAdd: true, havePasswords: true }}
/>
);
};

export default App;
export default App;

0 comments on commit 60401b2

Please sign in to comment.