Skip to content

Commit

Permalink
Merge branch 'main' into 754
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciki Momogi authored Jul 11, 2023
2 parents c719452 + 4de6c04 commit 5b4a3f0
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 30 deletions.
19 changes: 0 additions & 19 deletions .github/workflows-algolia.yml

This file was deleted.

3 changes: 1 addition & 2 deletions site/docs/es/plugins/keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
```

Expand Down
3 changes: 1 addition & 2 deletions site/docs/id/plugins/keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
```

Expand Down
3 changes: 1 addition & 2 deletions site/docs/plugins/keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
```

Expand Down
2 changes: 1 addition & 1 deletion site/docs/resources/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
3 changes: 1 addition & 2 deletions site/docs/uk/plugins/keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
```

Expand Down
3 changes: 1 addition & 2 deletions site/docs/zh/plugins/keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
```

Expand Down

0 comments on commit 5b4a3f0

Please sign in to comment.