From a3645983bfd123d9e8e304dc4aec265350368ef1 Mon Sep 17 00:00:00 2001 From: Hector Alfaro Date: Wed, 15 Mar 2023 12:05:40 -0400 Subject: [PATCH] Don't show liquid tags in GraphQL docs (#35587) --- components/graphql/Notice.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/graphql/Notice.tsx b/components/graphql/Notice.tsx index a87f115aa7..a8a63e1483 100644 --- a/components/graphql/Notice.tsx +++ b/components/graphql/Notice.tsx @@ -15,7 +15,7 @@ export function Notice({ item, variant = 'preview' }: Props) { const { t } = useTranslation('products') const previewTitle = variant === 'preview' - ? t('rest.reference.preview_notice') + ? t('graphql.reference.preview_notice') : t('graphql.reference.deprecation_notice') const noticeStyle = variant === 'preview'