From d24947d5cecd8047390de2d382eb46796023a09a Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Thu, 11 Jun 2026 16:51:37 -0700 Subject: [PATCH 1/2] fix: remove settings option from stream-view (#277) * remove settings option * remove unused var --- js/desktop/src/features/particles/stream-top-bar.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/js/desktop/src/features/particles/stream-top-bar.tsx b/js/desktop/src/features/particles/stream-top-bar.tsx index 0985ed5..050eb9a 100644 --- a/js/desktop/src/features/particles/stream-top-bar.tsx +++ b/js/desktop/src/features/particles/stream-top-bar.tsx @@ -1,5 +1,4 @@ import { useState } from 'react'; -import { useNavigate } from 'react-router-dom'; import { useAuthStore } from '@/stores/auth-store'; import { apiClient } from '@/api/client'; import { isParticleDeleted, type Particle } from '@/api/types'; @@ -20,7 +19,6 @@ import { DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import { - Settings, CircleCheckBig, CircleDot, EllipsisVertical, @@ -73,7 +71,6 @@ interface TopBarProps { } export function TopBar({ networkId, particle, streamParticle }: TopBarProps) { - const navigate = useNavigate(); const network = useNetwork(networkId); const userId = useAuthStore((s) => s.user?.id); const isCreator = !!userId && userId === streamParticle.created_by_human_id; @@ -226,10 +223,6 @@ export function TopBar({ networkId, particle, streamParticle }: TopBarProps) { Delete particle )} - navigate('/settings')}> - - Settings - From a358774106ae52274a93ba24ac709367fd1270f7 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Thu, 11 Jun 2026 16:52:05 -0700 Subject: [PATCH 2/2] ci: fix stuck on migration runs (#278) --- .github/workflows/_deploy.yml | 2 +- go/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_deploy.yml b/.github/workflows/_deploy.yml index 365b731..22bad05 100644 --- a/.github/workflows/_deploy.yml +++ b/.github/workflows/_deploy.yml @@ -79,7 +79,7 @@ jobs: run: | if [ "${{ inputs.module }}" = "migrations" ]; then kubectl delete job migrations --ignore-not-found - skaffold run -p migrations --tail + skaffold run -p migrations else skaffold run -p ${{ inputs.environment }} -m ${{ inputs.module }} fi diff --git a/go/Makefile b/go/Makefile index d6d55c6..19ed0c0 100644 --- a/go/Makefile +++ b/go/Makefile @@ -38,12 +38,12 @@ PROD_REPO := us-west2-docker.pkg.dev/flowy-prod-440017/deployments .PHONY: migrate-dev migrate-dev: kubectl delete job migrations --ignore-not-found --context=dev - SKAFFOLD_DEFAULT_REPO=$(DEV_REPO) skaffold run -p migrations --kube-context dev --tail + SKAFFOLD_DEFAULT_REPO=$(DEV_REPO) skaffold run -p migrations --kube-context dev .PHONY: migrate-prod migrate-prod: kubectl delete job migrations --ignore-not-found --context=prod - SKAFFOLD_DEFAULT_REPO=$(PROD_REPO) skaffold run -p migrations --kube-context prod --tail + SKAFFOLD_DEFAULT_REPO=$(PROD_REPO) skaffold run -p migrations --kube-context prod # ---- Deploy ---- # Use MODULE=orion or MODULE=particleprocessor or MODULE=pusher or MODULE=emailnotifierjob to deploy a single service, e.g.: