Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion services/idun_agent_web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import SigninPage from './pages/signin/page';
import { useEffect } from 'react';
import { useAuth } from './hooks/use-auth';
import ApplicationPage from './pages/application-page/page';
import MemoryPage from './pages/memory-page/page';
import Loader from './components/general/loader/component';
import { useLoader } from './hooks/use-loader';
import ObservationPage from './pages/observation/page';
Expand Down Expand Up @@ -154,7 +155,7 @@ function App() {
<ContentLayout>
<SideBar />
<MainContent>
<ApplicationPage category="Memory" />
<MemoryPage />
</MainContent>
</ContentLayout>
</AppLayout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Container = styled.div`
border-radius: 8px;
padding: 16px;
height: 100%;
min-height: 250px;
min-height: 200px;
`;

const AppImage = styled.img`
Expand Down
Loading