Skip to content

Commit

Permalink
Merge v1 into main (#497)
Browse files Browse the repository at this point in the history
* use v1 branch of prem registry

* Fix chat history (#439)

* Available tag (#433)

* Available tag

* filter available + rm appId

* rm unused var

* gha: workflow_dispatch with manual version and branch name

* gha: debug

* gha: use version as number

* v0.1.3

* remove mp3 (#432)

* Update to TanStack Query v5 (#443)

* fix: binary_url precedence logic (#450)

* fix: binary_url precedence logic

* fix: lint

* Remove isFetching (#460)

* fix: match premd routes with slash in docker controller (#455)

* fix: gracefully handle process kill (#442)

* GHA: split Tauri and Docker in two workflows (#462)

* chore: add docker-compose to test app, daemon and gateway

* docker-compose.gateway point to stable premd

* v0.1.4

* fix: buggy state fetch (#471)

* v0.1.5

---------

Co-authored-by: Janaka-Steph <[email protected]>
Co-authored-by: Biswaroop <[email protected]>
Co-authored-by: Swarnim Arun <[email protected]>
  • Loading branch information
4 people authored Nov 6, 2023
1 parent 2bdf101 commit 39ebc7a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/modules/service/components/Service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ const Service = () => {
setAppsAugmented(_apps ?? []);
}, [apps]);

useEffect(() => {
const _apps = apps?.concat({
id: "available",
name: "Available",
playground: false,
documentation: "",
icon: "https://raw.githubusercontent.com/astrit/css.gg/master/icons/svg/smile-mouth-open.svg",
});
setAppsAugmented(_apps ?? []);
}, [apps]);

const filteredApps = useMemo(() => {
if (filters.size === 0) return appsAugmented;
if (![...filters.values()].includes(true)) return appsAugmented;
Expand Down

0 comments on commit 39ebc7a

Please sign in to comment.