feat: compose new stream full flow

This commit is contained in:
talksik
2026-03-18 15:20:57 -07:00
parent d316ba1e09
commit fca125ab52
8 changed files with 292 additions and 161 deletions
-2
View File
@@ -7,7 +7,6 @@ interface CreateParticleParams<T extends ParticleType = ParticleType> {
type: T;
properties: ParticlePropertiesMap[T];
createdByEmail: string;
visibleTo: string[];
}
export function useCreateParticle() {
@@ -18,7 +17,6 @@ export function useCreateParticle() {
params.type,
params.properties,
params.createdByEmail,
params.visibleTo,
),
});
}