Skip to content

Commit aa81e22

Browse files
committed
tsc
1 parent 5fa1d19 commit aa81e22

File tree

2 files changed

+1
-2
lines changed
  • plugins

2 files changed

+1
-2
lines changed

plugins/backstage-plugin-coder-backend/src/service/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function createRouter(
2020

2121
// OAuth callback endpoint
2222
router.get('/oauth/callback', async (req, res) => {
23-
const { code, state } = req.query;
23+
const { code } = req.query;
2424

2525
if (!code || typeof code !== 'string') {
2626
logger.error('OAuth callback missing authorization code');

plugins/backstage-plugin-coder/src/plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import {
22
createPlugin,
3-
createRoutableExtension,
43
createComponentExtension,
54
createApiFactory,
65
discoveryApiRef,

0 commit comments

Comments
 (0)