From c88b77a8041739846945b87618575b693a1cba02 Mon Sep 17 00:00:00 2001 From: poduck Date: Sun, 21 Dec 2025 14:45:23 -0500 Subject: [PATCH] Fix Activepieces piece logos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SmoothSchedule: Use DigitalOcean Spaces URL for logo - Python: Use icon-only version from SVGRepo 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../packages/pieces/community/python-code/src/index.ts | 4 ++-- .../packages/pieces/community/smoothschedule/src/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/activepieces-fork/packages/pieces/community/python-code/src/index.ts b/activepieces-fork/packages/pieces/community/python-code/src/index.ts index 9061e69c..7b6818c9 100644 --- a/activepieces-fork/packages/pieces/community/python-code/src/index.ts +++ b/activepieces-fork/packages/pieces/community/python-code/src/index.ts @@ -2,8 +2,8 @@ import { createPiece, PieceAuth } from '@activepieces/pieces-framework'; import { PieceCategory } from '@activepieces/shared'; import { runPythonCode } from './lib/run-python-code'; -// Python logo - use official Python logo from python.org -const PYTHON_LOGO = 'https://www.python.org/static/community_logos/python-logo-generic.svg'; +// Python logo - icon only (from SVGRepo) +const PYTHON_LOGO = 'https://www.svgrepo.com/show/452091/python.svg'; export const pythonCode = createPiece({ displayName: 'Python Code', diff --git a/activepieces-fork/packages/pieces/community/smoothschedule/src/index.ts b/activepieces-fork/packages/pieces/community/smoothschedule/src/index.ts index d78998b2..5b653091 100644 --- a/activepieces-fork/packages/pieces/community/smoothschedule/src/index.ts +++ b/activepieces-fork/packages/pieces/community/smoothschedule/src/index.ts @@ -56,8 +56,8 @@ export type SmoothScheduleAuth = { props: SmoothScheduleAuthProps; }; -// SmoothSchedule logo - use production URL (works in both environments via DNS) -const SMOOTHSCHEDULE_LOGO = 'https://smoothschedule.com/static/images/logo-branding.png'; +// SmoothSchedule logo - hosted on DigitalOcean Spaces +const SMOOTHSCHEDULE_LOGO = 'https://smoothschedule.nyc3.digitaloceanspaces.com/static/images/logo-branding.png'; export const smoothSchedule = createPiece({ displayName: 'SmoothSchedule',