cordo 2.3.3 → 2.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordo",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "description": "A framework for handling complex discord api interactions",
5
5
  "exports": {
6
6
  ".": "./src/index.ts",
@@ -138,7 +138,7 @@ export function renderComponentList(
138
138
  continue
139
139
  }
140
140
 
141
- if (parsed.nativeName === 'StringSelect') {
141
+ if (parsed.nativeName === 'StringSelect' || parsed.nativeName === 'TextInput') {
142
142
  if (rowBuilder.length > 0) {
143
143
  pipeline.push(readComponent(row(...rowBuilder as any)))
144
144
  rowBuilder.splice(0)