From c274feced105d873452e0e7807f5f7f53a9919ad Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 30 Aug 2023 18:56:36 +0100 Subject: [PATCH] Fix broken build --- src/data/roadmaps/cpp/content/libraries/104-grpc.md | 2 +- src/pages/questions/[questionGroupId].astro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/cpp/content/libraries/104-grpc.md b/src/data/roadmaps/cpp/content/libraries/104-grpc.md index 388e89720..f31b5239c 100644 --- a/src/data/roadmaps/cpp/content/libraries/104-grpc.md +++ b/src/data/roadmaps/cpp/content/libraries/104-grpc.md @@ -10,7 +10,7 @@ In gRPC, you start by defining service definitions and message structures in `.p Here's an example of how that might look: -```protobuf +```proto syntax = "proto3"; package example; diff --git a/src/pages/questions/[questionGroupId].astro b/src/pages/questions/[questionGroupId].astro index ff2fcd9f6..3a9c941dd 100644 --- a/src/pages/questions/[questionGroupId].astro +++ b/src/pages/questions/[questionGroupId].astro @@ -8,7 +8,7 @@ import AstroIcon from "../../components/AstroIcon.astro"; export async function getStaticPaths() { return [ { - params: { quizId: 'frontend' }, + params: { questionGroupId: 'frontend' }, props: {}, }, ];