From 903efd5621853193d3497296ce8149af2618eb1e Mon Sep 17 00:00:00 2001 From: iploooox Date: Tue, 8 Oct 2024 23:11:27 +0200 Subject: [PATCH] fix quicklinks (#114) --- .../execution-engine/src/ExecutionEngine.ts | 1 - packages/www/app/components/Footer.tsx | 49 ++++++++++--------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/packages/execution-engine/src/ExecutionEngine.ts b/packages/execution-engine/src/ExecutionEngine.ts index 6b80f24..7d76952 100644 --- a/packages/execution-engine/src/ExecutionEngine.ts +++ b/packages/execution-engine/src/ExecutionEngine.ts @@ -236,7 +236,6 @@ export class ExecutionEngine { outputs: Record, ): void { this.updateWorkflowState(blockConfig.id, outputs); - // Additional logic to pass outputs to connected blocks could be implemented here } private handleBlockError( diff --git a/packages/www/app/components/Footer.tsx b/packages/www/app/components/Footer.tsx index a68dc74..068f79a 100644 --- a/packages/www/app/components/Footer.tsx +++ b/packages/www/app/components/Footer.tsx @@ -2,6 +2,21 @@ import { Link } from "@remix-run/react"; import { Button } from "~/components/ui/button"; import { Input } from "~/components/ui/input"; +const quickLinks = [ + { + label: "Documentation", + url: "https://docs.data-river.dev/", + }, + { + label: "GitHub", + url: "https://github.com/softflow24/data-river", + }, + { + label: "Discord", + url: "https://discord.com/invite/CmEqvZQUQn", + }, +]; + export default function Footer() { return (