Skip to content

Commit

Permalink
Remove unique processors from shared app list
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhai committed Sep 27, 2024
1 parent 245b057 commit 59c8f09
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions llmstack/client/src/components/apps/SharedAppList.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import DoneIcon from "@mui/icons-material/Done";
import {
Chip,
Paper,
Table,
TableBody,
Expand All @@ -24,7 +23,7 @@ export function SharedAppList() {
useEffect(() => {
axios()
.get(
"/api/apps/shared?fields=uuid,name,visibility,is_published,app_type_name,owner_email,published_uuid,access_permission,unique_processors",
"/api/apps/shared?fields=uuid,name,visibility,is_published,app_type_name,owner_email,published_uuid,access_permission",
)
.then((response) => {
setApps(response.data);
Expand All @@ -51,7 +50,6 @@ export function SharedAppList() {
<TableCell>App Name</TableCell>
<TableCell sx={{ textAlign: "center" }}>App Type</TableCell>
<TableCell sx={{ textAlign: "center" }}>Owner</TableCell>
<TableCell>Processors</TableCell>
<TableCell sx={{ textAlign: "center" }}>Can Edit?</TableCell>
</TableRow>
</TableHead>
Expand Down Expand Up @@ -80,11 +78,6 @@ export function SharedAppList() {
<TableCell sx={{ textAlign: "center" }}>
{row.owner_email}
</TableCell>
<TableCell style={{ maxWidth: "100px" }}>
{row.unique_processors?.map((x) => (
<Chip key={x} label={x} size="small" />
))}
</TableCell>
<TableCell sx={{ textAlign: "center" }}>
{row?.access_permission > 0 && <DoneIcon color="success" />}
</TableCell>
Expand Down

0 comments on commit 59c8f09

Please sign in to comment.