From d8de7ca8c7329afcb97db866f2408c1a7ff614bd Mon Sep 17 00:00:00 2001 From: Hubert Lin Date: Wed, 23 Oct 2024 20:11:09 -0600 Subject: [PATCH] feat: add author name --- .github/workflows/deploy.yml | 4 ++++ .vscode/settings.json | 5 ----- README.md | 3 +++ src/routes/(_components)/top_nav.tsx | 1 + src/routes/_app.tsx | 4 +++- 5 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d588bf7..d3bdbbe 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,6 +5,10 @@ on: pull_request: branches: main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: deploy: name: Deploy diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6f4f84f..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "deno.enable": true, - "deno.lint": true, - "editor.defaultFormatter": "denoland.vscode-deno" -} diff --git a/README.md b/README.md index bc7ced8..b228a12 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,11 @@ Public data comes from City of Edmonton's open data portal. ### Ideas +- calculate tax rate on the property + - https://www.edmonton.ca/residential_neighbourhoods/property-taxes?utm_source=virtualaddress&utm_campaign=taxrates#stack135584 - show property type (residential ... etc) - check out Fresh Charts: https://deno.land/x/fresh_charts@0.2.1 - add map if it adds value - add a logo + favicon - add recently viewed addresses + diff --git a/src/routes/(_components)/top_nav.tsx b/src/routes/(_components)/top_nav.tsx index 28a682a..899417d 100644 --- a/src/routes/(_components)/top_nav.tsx +++ b/src/routes/(_components)/top_nav.tsx @@ -6,6 +6,7 @@ export function TopNav() {