apply suggested language improvements

Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
This commit is contained in:
Juan Pablo Garcia Ripa
2021-08-20 08:54:39 +02:00
parent 58f90dc757
commit 283b350cb3
+3 -3
View File
@@ -19,7 +19,7 @@ This plugin requires explicit registration, so you will need to add it to your A
export { shortcutsPlugin } from '@backstage/plugin-shortcuts';
```
If you don't have a `plugins.ts` see: [troubleshoot](#troubleshoot)
If you don't have a `plugins.ts` file see: [troubleshooting](#troubleshooting)
### Add the `<Shortcuts />` component within your `<Sidebar>`:
@@ -55,9 +55,9 @@ export const apis = [
];
```
# Troubleshoot
# Troubleshooting
If you don't have a `plugins.ts` you can create a new one on `packages/app/src/plugins.ts` and then add this lines to your `App.tsx` if there is other plugins that requires explicit registration:
If you don't have a `plugins.ts` file, you can create it with the path `packages/app/src/plugins.ts` and then import it into your `App.tsx`:
```diff
+ import * as plugins from './plugins';