Skip to content

Commit

Permalink
correct price and set site back to dsavdodeka
Browse files Browse the repository at this point in the history
  • Loading branch information
tiptenbrink committed Jan 15, 2025
1 parent 313e2d0 commit 5dcf477
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions authpage/src/credentials/register/Register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,9 @@ const Register = () => {
<label>Soort lidmaatschap:</label>
<select id="plan" name="plan" value={state.plan}
onChange={handleSelectChange}>
<option value="Wedstrijdlid">Wedstrijdlid (€53 per kwartaal)</option>
<option value="Recreantlid">Recreantlid (€47 per kwartaal)</option>
<option value="Gastlid">Gastlid (€44 per kwartaal)</option>
<option value="Wedstrijdlid">Wedstrijdlid (€53,50 per kwartaal)</option>
<option value="Recreantlid">Recreantlid (€47,00 per kwartaal)</option>
<option value="Gastlid">Gastlid (€44,00 per kwartaal)</option>
</select>
</div>
<div className="checkbox">
Expand Down
4 changes: 2 additions & 2 deletions authpage/src/functions/authenticate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ interface Plan {
}

interface PlanDetails {
price: 53 | 47 | 44;
price: 53.5 | 47 | 44;
planCode: string;
registrationFee: 5;
remittanceFee: null;
Expand All @@ -77,7 +77,7 @@ interface PlanDetails {
}

const wedstrijdlidPlan: PlanDetails = {
price: 53,
price: 53.5,
planCode: "12",
registrationFee: 5,
remittanceFee: null,
Expand Down
2 changes: 1 addition & 1 deletion backend/deploy_tmp/define.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ api_root = "https://api.dsavdodeka.nl"
issuer = "https://api.dsavdodeka.nl"
frontend_client_id = "dodekaweb_client"
backend_client_id = "dodekabackend_client"
valid_redirects = ["https://demo.tipten.nl/auth/callback"]
valid_redirects = ["https://dsavdodeka.nl/auth/callback"]

credentials_url = "https://api.dsavdodeka.nl/credentials/"
onboard_email = "[email protected]"
Expand Down
2 changes: 0 additions & 2 deletions backend/deploy_tmp/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
set -a

cd ../../authpage
echo "VITE_AUTHPAGE_AUTH_URL=https://api.dsavdodeka.nl" > .env.production
echo "VITE_AUTHPAGE_CLIENT_URL=https://demo.tipten.nl" >> .env.production
npm ci --force
npm run build -- --mode production --emptyOutDir

Expand Down

0 comments on commit 5dcf477

Please sign in to comment.