Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyrlex committed Oct 6, 2023
1 parent 4c5ae06 commit 1dcdf17
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions pages/admin/webshop/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,20 @@ const AdminCreateProducts: NextPage<{
stock: data.stock,
user,
}),
}).catch(e => {
console.log(e);
setMessage({
type: 'error',
text: 'Er was een fout bij het maken van het product.',
});
});

if (req.ok) {
if (req && req.ok) {
setMessage({
type: 'success',
text: 'Product is succesvol aangemaakt!',
});
await router.push('/admin/webshop/');
} else if (req.status === 401) {
setMessage({
type: 'error',
text: 'Er was een fout bij het maken van het product.',
});
}
} catch (error) {
console.error(error);
Expand Down
4 changes: 2 additions & 2 deletions pages/lidkaart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Lidkaart: NextPage = () => {
</p>
<p className='text-2xl'>
Twijfel je nog?
Hier nog eens alle voordelen die je uit een lidmaatschap haalt.
Hier nog eens alle <span className='font-bold'>voordelen</span> die je uit een lidmaatschap haalt.
</p>
<ul className='mb-5 text-lg'>
<li>
Expand All @@ -32,7 +32,7 @@ const Lidkaart: NextPage = () => {
<li>
⁃ Unieke kans om jouw netwerk uit te breiden
</li>
Dit alles voor maar 10 euro!
Dit alles voor maar <span className='font-bold'>10 euro</span>!
</ul>

<h2 className='text-2xl'>
Expand Down

0 comments on commit 1dcdf17

Please sign in to comment.