mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
Refactor transaction components and styles
- Updated imports to use absolute paths for types and utilities. - Enhanced TransactionTable component with mobile responsiveness and card-based layout. - Improved loading and error handling in transaction fetching logic. - Refactored transaction update API to streamline validation and data preparation. - Added new styles for Radix UI components and improved global styles for better mobile experience. - Implemented collapsible sections and improved button interactions in the UI. - Updated tests to reflect changes in component structure and imports.
This commit is contained in:
@@ -10,7 +10,9 @@
|
||||
},
|
||||
"runArgs": ["--dns", "8.8.8.8", "--dns", "8.8.4.4", "--network=host", "--dns-search=."],
|
||||
"containerEnv": {
|
||||
"HOSTALIASES": "/etc/host.aliases"
|
||||
"HOSTALIASES": "/etc/host.aliases",
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${localEnv:GITHUB_PERSONAL_ACCESS_TOKEN}",
|
||||
"TZ": "America/New_York"
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
@@ -63,14 +65,10 @@
|
||||
},
|
||||
"terminal.integrated.defaultProfile.linux": "bash",
|
||||
"mcp.servers.github": {
|
||||
"command": "docker",
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"run",
|
||||
"-i",
|
||||
"--rm",
|
||||
"--env-file",
|
||||
"${containerWorkspaceFolder}/.devcontainer/.env",
|
||||
"ghcr.io/github/github-mcp-server"
|
||||
"-c",
|
||||
"source ${containerWorkspaceFolder}/.devcontainer/library-scripts/load-env.sh && docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN=\"$GITHUB_PERSONAL_ACCESS_TOKEN\" ghcr.io/github/github-mcp-server"
|
||||
],
|
||||
"env": {}
|
||||
}
|
||||
@@ -87,5 +85,8 @@
|
||||
"remoteEnv": {
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${localEnv:GITHUB_PERSONAL_ACCESS_TOKEN}"
|
||||
},
|
||||
"postStartCommand": "gh auth status || gh auth login"
|
||||
"initializeCommand": {
|
||||
"load-env": "echo 'Preparing environment variables for container startup'"
|
||||
},
|
||||
"postStartCommand": "source ${containerWorkspaceFolder}/.devcontainer/library-scripts/load-env.sh && gh auth status || gh auth login"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user