diff --git a/.github/workflows-algolia.yml b/.github/workflows-algolia.yml deleted file mode 100644 index 46d52d850..000000000 --- a/.github/workflows-algolia.yml +++ /dev/null @@ -1,19 +0,0 @@ -# name: Crawl - -# on: -# push: -# branches: [main] - -# jobs: -# crawl: -# runs-on: ubuntu-latest -# steps: -# - name: Algolia crawler creation and crawl -# uses: algolia/algoliasearch-crawler-github-actions@v1.0.10 -# id: algolia_crawler -# with: # mandatory parameters -# crawler-user-id: ${{ secrets.CRAWLER_USER_ID }} -# crawler-api-key: ${{ secrets.CRAWLER_API_KEY }} -# algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }} -# algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }} -# site-url: "https://grammy.dev" diff --git a/site/docs/es/plugins/keyboard.md b/site/docs/es/plugins/keyboard.md index 520ebc6c3..31b30c0a4 100644 --- a/site/docs/es/plugins/keyboard.md +++ b/site/docs/es/plugins/keyboard.md @@ -195,8 +195,7 @@ const labels = [ "No. 😈", ]; const buttonRows = labels - .map((label) => Keyboard.text(label)) - .map((button) => Keyboard.row(button)); + .map((label) => [Keyboard.text(label)]); const keyboard = Keyboard.from(buttonRows, { resize_keyboard: true }); ``` diff --git a/site/docs/id/plugins/keyboard.md b/site/docs/id/plugins/keyboard.md index 73dcd5c3e..25dee490c 100644 --- a/site/docs/id/plugins/keyboard.md +++ b/site/docs/id/plugins/keyboard.md @@ -193,8 +193,7 @@ const labels = [ "No. 😈", ]; const buttonRows = labels - .map((label) => Keyboard.text(label)) - .map((button) => Keyboard.row(button)); + .map((label) => [Keyboard.text(label)]); const keyboard = Keyboard.from(buttonRows, { resize_keyboard: true }); ``` diff --git a/site/docs/plugins/keyboard.md b/site/docs/plugins/keyboard.md index 0793d2a72..c65cfff59 100644 --- a/site/docs/plugins/keyboard.md +++ b/site/docs/plugins/keyboard.md @@ -190,8 +190,7 @@ const labels = [ "No. 😈", ]; const buttonRows = labels - .map((label) => Keyboard.text(label)) - .map((button) => Keyboard.row(button)); + .map((label) => [Keyboard.text(label)]); const keyboard = Keyboard.from(buttonRows, { resize_keyboard: true }); ``` diff --git a/site/docs/resources/about.md b/site/docs/resources/about.md index 220a0fe7e..da1101235 100644 --- a/site/docs/resources/about.md +++ b/site/docs/resources/about.md @@ -54,6 +54,6 @@ There are a number of great ways to support this project! - Help out with the [Documentation](https://github.com/grammyjs/website). - Assist people in the community chats in [English](https://t.me/grammyjs) or [Russian](https://t.me/grammyjs_ru). - Or just come tell us what you think! - Leaving a few words about your favorite feature, helps us determine the direction of the project. + Leaving a few words about your favorite feature helps us determine the direction of the project. Currently, we do not take any donations or other financial support. diff --git a/site/docs/uk/plugins/keyboard.md b/site/docs/uk/plugins/keyboard.md index 0d7346bcc..25d3d055f 100644 --- a/site/docs/uk/plugins/keyboard.md +++ b/site/docs/uk/plugins/keyboard.md @@ -190,8 +190,7 @@ const labels = [ "No. 😈", ]; const buttonRows = labels - .map((label) => Keyboard.text(label)) - .map((button) => Keyboard.row(button)); + .map((label) => [Keyboard.text(label)]); const keyboard = Keyboard.from(buttonRows, { resize_keyboard: true }); ``` diff --git a/site/docs/zh/plugins/keyboard.md b/site/docs/zh/plugins/keyboard.md index c4a3618db..905f91603 100644 --- a/site/docs/zh/plugins/keyboard.md +++ b/site/docs/zh/plugins/keyboard.md @@ -190,8 +190,7 @@ const labels = [ "No. 😈", ]; const buttonRows = labels - .map((label) => Keyboard.text(label)) - .map((button) => Keyboard.row(button)); + .map((label) => [Keyboard.text(label)]); const keyboard = Keyboard.from(buttonRows, { resize_keyboard: true }); ```