v.1.1 순서변경.

홈화면에 업데이트 내역 추가
This commit is contained in:
SR07 2025-05-28 16:52:15 +09:00
parent c1a07ed816
commit f0b482aea6
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ export default function CharacterList() {
{characters.map((char) => ( {characters.map((char) => (
<SortableCharacterCard key={char.id} character={char} /> <SortableCharacterCard key={char.id} character={char} />
))} ))}
<Grid item xs={12} sm={6} md={4}> <Grid component="div" item xs={12} sm={6} md={4}>
<Card <Card
onClick={() => (window.location.href = '/characters/register')} onClick={() => (window.location.href = '/characters/register')}
sx={{ sx={{

View File

@ -43,7 +43,7 @@ function SortableHomeworkCard({ homework }: { homework: HomeworkType }) {
} }
return ( return (
<Grid item xs={12} sm={6} md={4} ref={setNodeRef} style={style}> <Grid component="div" item xs={12} sm={6} md={4} ref={setNodeRef} style={style}>
<Card <Card
sx={{ sx={{
cursor: 'pointer', cursor: 'pointer',