{bookmark.bookmark.name} | {bookmark.bookmark.url} | +{bookmark.bookmark.icon} | {bookmark.categoryName} |
{
name: '',
url: '',
categoryId: -1,
+ icon: '',
id: -1,
createdAt: new Date(),
updatedAt: new Date()
diff --git a/client/src/components/Settings/OtherSettings/OtherSettings.tsx b/client/src/components/Settings/OtherSettings/OtherSettings.tsx
index 2d3a6cd9..7a6090e3 100644
--- a/client/src/components/Settings/OtherSettings/OtherSettings.tsx
+++ b/client/src/components/Settings/OtherSettings/OtherSettings.tsx
@@ -9,6 +9,8 @@ import { ApiResponse, Config, NewNotification } from '../../../interfaces';
interface FormState {
customTitle: string;
+ pinAppsByDefault: number;
+ pinCategoriesByDefault: number;
}
interface ComponentProps {
@@ -17,12 +19,14 @@ interface ComponentProps {
const OtherSettings = (props: ComponentProps): JSX.Element => {
const [formData, setFormData] = useState |