Skip to content

Commit ec5f8d1

Browse files
committed
fix: sample data name 변경
1 parent a1e9a5d commit ec5f8d1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

apps/storybook/scripts/fetchNotionProperties.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ async function fetchAndSaveProperties() {
5454
const properties = await client.getPageProperties(PAGE_ID);
5555

5656
// JSON 파일로 저장
57-
const outputPath = join(__dirname, '../src/sample-data/notionTitle.json');
57+
const outputPath = join(
58+
__dirname,
59+
'../src/sample-data/notionProperties.json'
60+
);
5861
console.log(`저장 경로: ${outputPath}`);
5962
writeFileSync(outputPath, JSON.stringify(properties, null, 2), 'utf8');
6063

0 commit comments

Comments
 (0)