deps version bump + frontend
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed

This commit is contained in:
Stephan D
2025-11-14 16:35:17 +01:00
parent 975496ecbe
commit 9a891fd523
12 changed files with 420 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
{
email {$CADDY_ACME_EMAIL}
auto_https on
}
{$SERVICE_HOST} {
root * /usr/share/pweb
encode zstd gzip
try_files {path} /index.html
file_server
header {
Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
}
}

View File

@@ -20,6 +20,6 @@ replace_env_var "DEFAULT_LOCALE"
replace_env_var "DEFAULT_CURRENCY"
echo "Passing by launch command"
# Execute the passed command (e.g., starting Nginx)
# Execute the passed command (e.g., starting Caddy)
# exec "$@"
exec nginx -g 'daemon off;'
exec caddy run --config /etc/caddy/Caddyfile --adapter caddyfile

View File

@@ -64,7 +64,7 @@ class _AvatarTileState extends State<AvatarTile> {
width: _avatarSize,
height: _avatarSize,
fit: BoxFit.cover,
errorBuilder: (_, __, ___) => _buildPlaceholder(),
errorBuilder: (_, _, _) => _buildPlaceholder(),
)
: _buildPlaceholder(),
),

View File

@@ -36,7 +36,7 @@ class _PaymentMethodDropdownState extends State<PaymentMethodDropdown> {
Widget build(BuildContext context) {
return DropdownButtonFormField<PaymentMethod>(
dropdownColor: Theme.of(context).colorScheme.onSecondary,
value: _selectedMethod,
initialValue: _selectedMethod,
decoration: InputDecoration(
labelText: AppLocalizations.of(context)!.whereGetMoney,
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),