Skip to content

Commit 2703f02

Browse files
committed
Merge branch 'main' into deploy
2 parents f1d3b45 + 1cc4455 commit 2703f02

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/store/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const initialState = {
1111
history: {
1212
past: [],
1313
present: getRandomAvatarOption({ wrapperShape: WrapperShape.Squircle }),
14-
future: [],
14+
future: []
1515
},
1616
isCollapsed: window.innerWidth <= SCREEN.lg,
1717
};

src/types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { type NONE } from '@/constants'
2+
import { REDO, SET_AVATAR_OPTION, SET_SIDER_STATUS, UNDO } from '@/store/mutation-type';
23
import {
34
type BeardShape,
45
type ClothesShape,
@@ -14,7 +15,6 @@ import {
1415
type TopsShape,
1516
type WrapperShape,
1617
} from '@/enums'
17-
import { REDO, SET_AVATAR_OPTION, SET_SIDER_STATUS, UNDO } from '@/store/mutation-type';
1818

1919
export type None = typeof NONE
2020

src/utils/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { AvatarOption, None } from '../types';
2-
import { AVATAR_LAYER, NONE, SETTINGS, SPECIAL_AVATARS } from '../constants';
3-
import { BeardShape, EarringsShape, Gender, GlassesShape, TopsShape, WidgetType } from '../enums';
1+
import { AvatarOption, None } from '@/types';
2+
import { AVATAR_LAYER, NONE, SETTINGS, SPECIAL_AVATARS } from '@/constants';
3+
import { BeardShape, EarringsShape, Gender, GlassesShape, TopsShape, WidgetType } from '@/enums';
44
import { previewData } from './dynamic-data';
55

66
function getRandomValue<Item = unknown>(

0 commit comments

Comments
 (0)