Skip to content

Commit

Permalink
Image and Text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vgees committed Sep 28, 2023
1 parent 0e14f75 commit 0635f5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified packages/ui/src/assets/images/account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/ui/src/assets/images/robot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const ProfileSection = ({ username, handleLogout }) => {
setLoading(false)
}
} else {
alert('Incorrect Flowise Database Format')
alert('Incorrect VectrFlow Database Format')
}
}
reader.readAsText(file)
Expand Down Expand Up @@ -227,7 +227,7 @@ const ProfileSection = ({ username, handleLogout }) => {
<ListItemIcon>
<IconInfoCircle stroke={1.5} size='1.3rem' />
</ListItemIcon>
<ListItemText primary={<Typography variant='body2'>About Flowise</Typography>} />
<ListItemText primary={<Typography variant='body2'>About VectrFlow</Typography>} />
</ListItemButton>
{localStorage.getItem('username') && localStorage.getItem('password') && (
<ListItemButton
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/views/marketplaces/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Marketplace = () => {
const [isChatflowsLoading, setChatflowsLoading] = useState(true)
const [isToolsLoading, setToolsLoading] = useState(true)
const [images, setImages] = useState({})
const tabItems = ['Chatflows', 'Tools']
const tabItems = ['Templates', 'Tools']
const [value, setValue] = useState(0)
const [showToolDialog, setShowToolDialog] = useState(false)
const [toolDialogProps, setToolDialogProps] = useState({})
Expand Down Expand Up @@ -151,7 +151,7 @@ const Marketplace = () => {
</Tabs>
{tabItems.map((item, index) => (
<TabPanel key={index} value={value} index={index}>
{item === 'Chatflows' && (
{item === 'Templates' && (
<Grid container spacing={gridSpacing}>
{!isChatflowsLoading &&
getAllChatflowsMarketplacesApi.data &&
Expand Down

0 comments on commit 0635f5f

Please sign in to comment.