Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Feb 22, 2024
1 parent 5f5906c commit cc11119
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@ jobs:
env:
TALLY_API_KEY: ${{ secrets.TALLY_API_KEY }}

- name: Prepare tag
id: prepare_tag
if: startsWith(github.ref, 'refs/tags/')
run: |
TAG_NAME="${GITHUB_REF##refs/tags/}"
echo "::set-output name=tag_name::${TAG_NAME}"
echo "::set-output name=deploy_tag_name::deploy-${TAG_NAME}"
- name: Edgeserver Upload
uses: lvkdotsh/[email protected]
with:
Expand Down
8 changes: 7 additions & 1 deletion app/app/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ const config = createConfig({
connectors: [
injected({}),
walletConnect({
projectId: 'b451d5ff25d61b3fde7b30f167a5a957',
projectId: '3b205429cec06896f1d18c3b46dc5a68',
metadata: {
name: 'ENS Documentation',
description: 'Ethereum Name Service Documentation',
icons: ['https://docs.ens.domains/favicon.ico'],
url: 'https://docs.ens.domains',
},
showQrModal: false,
}),
],
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@ens-tools/format": "^0.0.2",
"@ens-tools/thorin-core": "0.0.3-4",
"@ens-tools/thorin-core": "0.0.3-5",
"@ensdomains/thorin": "^0.6.44",
"@headlessui/react": "^1.7.18",
"@mdx-js/loader": "^3.0.0",
Expand Down
8 changes: 4 additions & 4 deletions app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions app/src/content/extras/tld-list/TLDList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ export const TLDList = async () => {

const chunks: string[][] = [];

for (let index = 0; index < TLDs.length; index += 100) {
chunks.push(TLDs.slice(index, index + 100));
const batch_size = 400;

for (let index = 0; index < TLDs.length; index += batch_size) {
chunks.push(TLDs.slice(index, index + batch_size));
}

const results: [string[], any][] = [];
Expand Down

0 comments on commit cc11119

Please sign in to comment.