Skip to content

Commit

Permalink
Fixup ResolvedVc
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Dec 9, 2024
1 parent 6e2f59f commit ae17d73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/next-api/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -705,11 +705,11 @@ impl Project {
html_endpoint,
data_endpoint,
} => {
add_endpoint(*html_endpoint, &mut modules).await?;
add_endpoint(*data_endpoint, &mut modules).await?;
add_endpoint(**html_endpoint, &mut modules).await?;
add_endpoint(**data_endpoint, &mut modules).await?;
}
Route::PageApi { endpoint } => {
add_endpoint(*endpoint, &mut modules).await?;
add_endpoint(**endpoint, &mut modules).await?;
}
Route::AppPage(page_routes) => {
for page_route in page_routes {
Expand All @@ -721,7 +721,7 @@ impl Project {
original_name: _,
endpoint,
} => {
add_endpoint(*endpoint, &mut modules).await?;
add_endpoint(**endpoint, &mut modules).await?;
}
Route::Conflict => {
tracing::info!("WARN: conflict");
Expand Down

0 comments on commit ae17d73

Please sign in to comment.