Ignore:
Timestamp:
01/28/26 12:13:13 (5 months ago)
Author:
Tome <gjorgievtome@…>
Branches:
main
Children:
1d8f088
Parents:
e03e6fb (diff), 87b79bc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/main'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • components/ComponentDialog.tsx

    re03e6fb ra744c90  
    4040
    4141    useEffect(() => {
     42        if (open && category) {
     43            setSuggestForm({
     44                link: '',
     45                description: '',
     46                componentType: category
     47            });
     48        }
     49    }, [open, category]);
     50
     51    useEffect(() => {
    4252        const timeoutId = setTimeout(() => {
    4353            setSearchQuery(tempSearchQuery);
     
    4656    }, [tempSearchQuery]);
    4757
    48     // Load user auth
    4958    useEffect(() => {
    5059        if (open) {
     
    97106            [e.target.name]: e.target.value
    98107        });
    99     };
     108    }
     109
     110
    100111
    101112    const submitSuggestion = async () => {
Note: See TracChangeset for help on using the changeset viewer.