Skip to content

Commit f3f8eff

Browse files
committed
feat: 토픽 위치, 리사이징 API 연동
1 parent c907406 commit f3f8eff

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

apps/web/src/components/topic/custom-node.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ export default function CustomNode(props: CustomNodeProps) {
5858
};
5959
const updatePosition = async () => {
6060
if (isTopic) {
61-
// TODO: ec2 살아나면 주석 풀기
62-
// await updateTopicPosition(body);
61+
await updateTopicPosition(body);
6362
} else {
6463
await updateContentPosition({
6564
...body,
@@ -79,7 +78,7 @@ export default function CustomNode(props: CustomNodeProps) {
7978
};
8079
const updateSize = async () => {
8180
if (isTopic) {
82-
// await updateTopicSize(body);
81+
await updateTopicSize(body);
8382
} else {
8483
await updateContentSize({
8584
...body,

0 commit comments

Comments
 (0)