From 385434a42efa83940c10238cc08ad594a25f61d8 Mon Sep 17 00:00:00 2001 From: portuu3 Date: Wed, 29 Apr 2026 16:34:29 +0200 Subject: [PATCH] add social media promotion job type and corresponding label --- .../frontend/src/modules/smart-contracts/EthKVStore/config.ts | 1 + packages/apps/human-app/frontend/src/shared/i18n/en.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/apps/human-app/frontend/src/modules/smart-contracts/EthKVStore/config.ts b/packages/apps/human-app/frontend/src/modules/smart-contracts/EthKVStore/config.ts index c663fb9e03..06f52f89b0 100644 --- a/packages/apps/human-app/frontend/src/modules/smart-contracts/EthKVStore/config.ts +++ b/packages/apps/human-app/frontend/src/modules/smart-contracts/EthKVStore/config.ts @@ -15,6 +15,7 @@ export enum JobType { POLYGONS = 'image_polygons', AUDIO_TRANSCRIPTION = 'audio_transcription', AUDIO_ATTRIBUTE_ANNOTATION = 'audio_attribute_annotation', + SOCIAL_MEDIA_PROMOTION = 'social_media_promotion', } export const EthKVStoreKeys = { diff --git a/packages/apps/human-app/frontend/src/shared/i18n/en.json b/packages/apps/human-app/frontend/src/shared/i18n/en.json index bd42e03c26..d364c6e88c 100644 --- a/packages/apps/human-app/frontend/src/shared/i18n/en.json +++ b/packages/apps/human-app/frontend/src/shared/i18n/en.json @@ -505,6 +505,7 @@ "image_skeletons_from_boxes": "Skeletons from Bounding Boxes", "image_polygons": "Polygons", "audio_transcription": "Audio Transcription", - "audio_attribute_annotation": "Audio Attribute Annotation" + "audio_attribute_annotation": "Audio Attribute Annotation", + "social_media_promotion": "Social Media Promotion" } }