check your app-routing.module.ts file make sure there a path "auth/register"
another thing you can try is [routerLink]="'/auth/register'"
{
path: "auth/register",
loadChildren: () => import("./pages/foldername/filename.module").then((m) => m.YourModule),
}