Skip to content

Commit

Permalink
style: lint 적용 및 사용하지 않는 주석과 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Oct 23, 2024
1 parent 374ac23 commit 23b913a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/src/pages/MainPage/MainPage.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import useAmplitude from '@hooks/useAmplitude';
import useMainPageYScroll from '@hooks/useMainPageYScroll';

import Nav from './Nav/Nav';
import {MainSection} from './Section/MainSection';
import {DescriptionSection} from './Section/DescriptionSection';
import {FeatureSection} from './Section/FeatureSection';
import {mainContainer} from './MainPage.style';
import CreatorSection from './Section/CreatorSection/CreatorSection';
import useMainPageYScroll from '@hooks/useMainPageYScroll';

const MainPage = () => {
const {trackStartCreateEvent} = useAmplitude();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {css} from '@emotion/react';

import {Text} from '@components/Design';

import {avatarImageStyle, avatarStyle} from './Avatar.style';

interface Props {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const sectionStyle = css({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
// backgroundColor: '#ffffff',
});

export const articleStyle = css({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const sectionStyle = css({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
// backgroundColor: '#DFC1FF',
});

export const articleStyle = css({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import {css} from '@emotion/react';

import useMainPageYScroll from '@hooks/useMainPageYScroll';

import {SimpleShare} from './SimpleShare';
import {AutoCalculate} from './AutoCalculate';
import {CheckDeposit} from './CheckDeposit';
import {SimpleTransfer} from './SimpleTransfer';
import {RecordMemoryWithPhoto} from './RecordMemoryWithPhoto';
import useMainPageYScroll from '@hooks/useMainPageYScroll';

const FeatureSection = () => {
const {featureSectionRef} = useMainPageYScroll();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const sectionStyle = css({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
// backgroundColor: '#C1CFFF',
});

export const articleStyle = css({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const sectionStyle = css({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
// backgroundColor: '#FFA5B8',
});

export const articleStyle = css({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const sectionStyle = css({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
// backgroundColor: '#ffffff',
});

export const articleStyle = css({
Expand Down

0 comments on commit 23b913a

Please sign in to comment.