Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Revert "fix auth edge case (#180)"
Browse files Browse the repository at this point in the history
This reverts commit b17e803.
  • Loading branch information
elg0nz authored and Kayla Fitzsimmons committed Sep 14, 2024
1 parent dca1b38 commit e322520
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/biome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Biome

on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: read

jobs:
run_biome:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Biome CLI
uses: biomejs/setup-biome@v2
with:
version: 'latest'
working-dir: "/"
- name: Run Biome mocksi-lite
run: biome ci ./apps/mocksi-lite
- name: Run Biome dodom
run: biome ci ./packages/dodom
1 change: 1 addition & 0 deletions apps/mocksi-lite-next/src/pages/background/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ chrome.runtime.onMessageExternal.addListener(
if (auth) {
const { accessToken, email } = auth;
const tab = await getCurrentTab();

sendResponse({
message: { accessToken, email, url: tab?.url },
status: "ok",
Expand Down

0 comments on commit e322520

Please sign in to comment.