Fix TypeScript Set iteration error
This commit is contained in:
@@ -326,8 +326,8 @@ export default function CarsAdminPage() {
|
|||||||
const newBannerIds = localBannerSelections;
|
const newBannerIds = localBannerSelections;
|
||||||
|
|
||||||
console.log('=== Banner Update Debug ===');
|
console.log('=== Banner Update Debug ===');
|
||||||
console.log('Current banner IDs (from DB):', [...currentBannerIds]);
|
console.log('Current banner IDs (from DB):', Array.from(currentBannerIds));
|
||||||
console.log('New banner IDs (user selection):', [...newBannerIds]);
|
console.log('New banner IDs (user selection):', Array.from(newBannerIds));
|
||||||
|
|
||||||
// 추가할 배너
|
// 추가할 배너
|
||||||
const toAdd: number[] = [];
|
const toAdd: number[] = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user