From 40b702d55ec463762db927604ceeea1b21d8e6e6 Mon Sep 17 00:00:00 2001 From: Connor Leech Date: Mon, 22 Jan 2024 10:13:06 -0800 Subject: [PATCH] Update plugin-development.md Signed-off-by: Connor Leech --- docs/plugins/plugin-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/plugin-development.md b/docs/plugins/plugin-development.md index 8d8db8c387..5ba1de4a7d 100644 --- a/docs/plugins/plugin-development.md +++ b/docs/plugins/plugin-development.md @@ -40,7 +40,7 @@ import { createRouteRef } from '@backstage/core-plugin-api'; // Note: This route ref is for internal use only, don't export it from the plugin export const rootRouteRef = createRouteRef({ - title: 'Example Page', + id: 'Example Page', }); ```