Remove redundant type picker from event and programme creation.
Deploy Ladill Events / deploy (push) Failing after 23s

Events is a single-product app — type is implicit on create, so drop the Type card, default-type setting, and rebrand the create flow copy.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-07 11:14:10 +00:00
co-authored by Cursor
parent 7091bccdb4
commit a9b2960893
6 changed files with 16 additions and 52 deletions
@@ -79,7 +79,6 @@ class QrCodeController extends Controller
return view('qr-codes.create', [
'wallet' => $wallet,
'types' => collect(QrTypeCatalog::all())->only([$requestedType])->all(),
'requestedType' => $requestedType,
'moduleStyles' => QrModuleStyleCatalog::visible(),
'cornerOuterStyles' => QrCornerStyleCatalog::outerStyles(),
@@ -89,7 +88,6 @@ class QrCodeController extends Controller
'minTopup' => QrWallet::minTopupGhs(),
'ladillWalletBalance' => $this->platformBilling->balanceMinor($account->public_id) / 100,
'topupUrl' => 'https://'.config('app.account_domain').'/wallet',
'defaultType' => $qrSettings->resolvedDefaultType(),
'accountDefaultStyle' => $qrSettings->resolvedDefaultStyle(),
]);
}