Mohammed Foud commited on
Commit ·
71d636c
1
Parent(s): 9be2c2f
all
Browse files- src/utils.ts +2 -2
src/utils.ts
CHANGED
|
@@ -116,7 +116,7 @@ export function normalizeArabicText(text: string): string {
|
|
| 116 |
export async function getKeywords(): Promise<string[]> {
|
| 117 |
try {
|
| 118 |
const filters ={
|
| 119 |
-
|
| 120 |
}
|
| 121 |
const keywordsResponse = await fetchDataFromTable("keyword", 1000, 0, filters);
|
| 122 |
|
|
@@ -137,7 +137,7 @@ export async function getKeywords(): Promise<string[]> {
|
|
| 137 |
export async function getBlockKeywords(): Promise<string[]> {
|
| 138 |
try {
|
| 139 |
const filters ={
|
| 140 |
-
|
| 141 |
}
|
| 142 |
const blockKeywordsResponse = await fetchDataFromTable("blockkeyword", 1000, 0, filters);
|
| 143 |
|
|
|
|
| 116 |
export async function getKeywords(): Promise<string[]> {
|
| 117 |
try {
|
| 118 |
const filters ={
|
| 119 |
+
is_active:true
|
| 120 |
}
|
| 121 |
const keywordsResponse = await fetchDataFromTable("keyword", 1000, 0, filters);
|
| 122 |
|
|
|
|
| 137 |
export async function getBlockKeywords(): Promise<string[]> {
|
| 138 |
try {
|
| 139 |
const filters ={
|
| 140 |
+
is_active:true
|
| 141 |
}
|
| 142 |
const blockKeywordsResponse = await fetchDataFromTable("blockkeyword", 1000, 0, filters);
|
| 143 |
|