fix: use correct model namespace

This commit is contained in:
Oliver Booth 2023-08-05 21:00:19 +01:00
parent 6ed7097c0c
commit aeeb7dcfa5
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
@page "/{culture=en}/error/{code:int?}"
@model ErrorModel
@model OliverBooth.Pages.ErrorModel
@{
ViewData["Title"] = "Error";
}

View File

@ -1,3 +1,2 @@
@using oliverbooth.dev
@namespace oliverbooth.dev.Pages
@namespace OliverBooth.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers