Skip to content

Commit

Permalink
Minor Update - Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jgavrilo committed Jan 24, 2024
1 parent d41c69a commit ea335d0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
tag_name: ${{ steps.manifest.outputs.version }}
release_name: Release ${{ steps.manifest.outputs.version }}
body: Minor Update - Updated google button
body: Minor Update - Typo in code
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "GetItTogether",
"version": "1.4.4.4",
"version": "1.4.4.5",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAni8XFkkQ4I+t3clNWVnatNTUPEHK59rsOv461uN3TdXtz4NDw0/2aymf+/LEHyp2Yky2JlyCnxAkndmPbcuDrXHvl7+O8XYeTavVn5Xm96A544dUeSzrzUjgWHGcR9ZJ+g9ahmukamW12TdggrtGJixY6n4rGIx0WW0XPOLUed93kZyN6B1axWj20MJ9Cax71LdVScNISfZ6qIrJZTJSnpnMCKZoo9ZlDIuwaFJn7zhSIajYF0quSazI/Cug9pUfw42f1O+abv46m0Mtzltr5exC4et5jRVEanQRhjwiCMLYP9aKceWkqo+9131arAb44lYrIlZtusT7XQ12By0Z/wIDAQAB",
"description": "A tool set for chrome",
"permissions": [
Expand Down
4 changes: 2 additions & 2 deletions src/js/settings/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ async function updateGoogleAccountButton() {
}

const isLoggedIn = await checkLoginStatusWithoutLogin();
console.log("Here I am");

if (isLoggedIn) {
const token = await getAuthToken();
const email = await getUserEmail(token);
emailDisplay.textContent = `Logged in as ${email}`;
loginButton.style.display = 'none'; // Hide Login Button
logoutButton.style.display = 'block'; // Show Logout Button
} else {
emailDisplay.textContent = 'Login to connect to out google account';
emailDisplay.textContent = 'Log in through your google account to sync your tasks';
loginButton.style.display = 'block'; // Show Login Button
loginButton.onclick = initiateGoogleLogin; // Restore original onclick event
logoutButton.style.display = 'none'; // Hide Logout Button
Expand Down

0 comments on commit ea335d0

Please sign in to comment.