From 1b3de6475a045c161ffb120233b69592b56aec10 Mon Sep 17 00:00:00 2001 From: Ernest Teluk <teluk.ernest@gmail.com> Date: Fri, 29 Nov 2024 08:58:23 +0100 Subject: [PATCH] change extension from shortcuts to names --- src/consts/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/consts/index.ts b/src/consts/index.ts index 522ac27..481df9b 100644 --- a/src/consts/index.ts +++ b/src/consts/index.ts @@ -115,6 +115,6 @@ export const packagesToThemes = { }; export const fileTypes = [ - { color: blue, title: '.tsx', value: 'tsx' }, - { color: red, title: '.jsx', value: 'jsx' }, + { color: blue, title: 'Typescript', value: 'tsx' }, + { color: red, title: 'Javascript', value: 'jsx' }, ];