1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-26 18:44:57 +02:00

Fix broken build

This commit is contained in:
Kamran Ahmed
2023-08-30 18:56:36 +01:00
parent cdb9153029
commit c274feced1
2 changed files with 2 additions and 2 deletions

View File

@@ -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: Here's an example of how that might look:
```protobuf ```proto
syntax = "proto3"; syntax = "proto3";
package example; package example;

View File

@@ -8,7 +8,7 @@ import AstroIcon from "../../components/AstroIcon.astro";
export async function getStaticPaths() { export async function getStaticPaths() {
return [ return [
{ {
params: { quizId: 'frontend' }, params: { questionGroupId: 'frontend' },
props: {}, props: {},
}, },
]; ];