backup: 사용하지 않는 파일 삭제 전 복구 지점
- 전체 371개 파일 중 82개 미사용 파일 식별 - Phase 1: 33개 파일 삭제 예정 (100% 안전) - Phase 2: 30개 파일 삭제 검토 예정 - Phase 3: 19개 파일 수동 검토 예정 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:shadcn_ui/shadcn_ui.dart';
|
||||
import 'package:superport/data/models/vendor_dto.dart';
|
||||
import 'package:superport/utils/constants.dart';
|
||||
import 'package:superport/core/constants/app_constants.dart';
|
||||
|
||||
class VendorTable extends StatelessWidget {
|
||||
final List<VendorDto> vendors;
|
||||
@@ -45,7 +45,7 @@ class VendorTable extends StatelessWidget {
|
||||
rows: vendors.asMap().entries.map((entry) {
|
||||
final index = entry.key;
|
||||
final vendor = entry.value;
|
||||
final rowNumber = (currentPage - 1) * PaginationConstants.defaultPageSize + index + 1;
|
||||
final rowNumber = (currentPage - 1) * AppConstants.vendorPageSize + index + 1;
|
||||
|
||||
return DataRow(
|
||||
cells: [
|
||||
|
||||
Reference in New Issue
Block a user