Skip to content

Commit

Permalink
chore: 테스트용 연산자 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Sep 24, 2024
1 parent 2124ca4 commit 2ffcdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/components/Layout/components/Head/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Helmet } from 'react-helmet-async';

const Head = () => {
const isMakers = !import.meta.env.VITE_TEAM_NAME.includes('makers');
const isMakers = import.meta.env.VITE_TEAM_NAME.includes('makers');

const TOUCH_ICON = isMakers ? '/makers-touch-icon.png' : '/apple-touch-icon.png';
const ICON = isMakers ? '/makersIcon.svg' : '/icon.svg';
Expand Down

0 comments on commit 2ffcdba

Please sign in to comment.